4114 change Comment column name to C

This commit is contained in:
William Schaefer 2018-08-28 11:17:54 -04:00
parent 7441735140
commit 2dd937dfa7
3 changed files with 5 additions and 5 deletions

View File

@ -656,7 +656,7 @@ public class DataResultViewerTable extends AbstractDataResultViewer {
*/ */
private class IconRendererTableListener implements TableColumnModelListener { private class IconRendererTableListener implements TableColumnModelListener {
@NbBundle.Messages({"DataResultViewerTable.commentRender.name=Comment"}) @NbBundle.Messages({"DataResultViewerTable.commentRender.name=C"})
@Override @Override
public void columnAdded(TableColumnModelEvent e) { public void columnAdded(TableColumnModelEvent e) {
if (e.getSource() instanceof ETableColumnModel) { if (e.getSource() instanceof ETableColumnModel) {

View File

@ -286,8 +286,8 @@ public abstract class AbstractAbstractFileNode<T extends AbstractFile> extends A
* Sheet.get(Sheet.PROPERTIES) * Sheet.get(Sheet.PROPERTIES)
* @param tags the list of tags associated with the file * @param tags the list of tags associated with the file
*/ */
@NbBundle.Messages({"AbstractAbstractFileNode.createSheet.comment.name=Comment", @NbBundle.Messages({"AbstractAbstractFileNode.createSheet.comment.name=C",
"AbstractAbstractFileNode.createSheet.comment.displayName=Comment"}) "AbstractAbstractFileNode.createSheet.comment.displayName=C"})
protected void addCommentProperty(Sheet.Set sheetSet, List<ContentTag> tags) { protected void addCommentProperty(Sheet.Set sheetSet, List<ContentTag> tags) {
HasCommentStatus status = tags.size() > 0 ? HasCommentStatus.TAG_NO_COMMENT : HasCommentStatus.NO_COMMENT; HasCommentStatus status = tags.size() > 0 ? HasCommentStatus.TAG_NO_COMMENT : HasCommentStatus.NO_COMMENT;

View File

@ -561,8 +561,8 @@ public class BlackboardArtifactNode extends AbstractContentNode<BlackboardArtifa
* Sheet.get(Sheet.PROPERTIES) * Sheet.get(Sheet.PROPERTIES)
* @param tags the list of tags associated with the file * @param tags the list of tags associated with the file
*/ */
@NbBundle.Messages({"BlackboardArtifactNode.createSheet.comment.name=Comment", @NbBundle.Messages({"BlackboardArtifactNode.createSheet.comment.name=C",
"BlackboardArtifactNode.createSheet.comment.displayName=Comment"}) "BlackboardArtifactNode.createSheet.comment.displayName=C"})
protected void addCommentProperty(Sheet.Set sheetSet, List<Tag> tags) { protected void addCommentProperty(Sheet.Set sheetSet, List<Tag> tags) {
HasCommentStatus status = tags.size() > 0 ? HasCommentStatus.TAG_NO_COMMENT : HasCommentStatus.NO_COMMENT; HasCommentStatus status = tags.size() > 0 ? HasCommentStatus.TAG_NO_COMMENT : HasCommentStatus.NO_COMMENT;
for (Tag tag : tags) { for (Tag tag : tags) {