use of org.eclipse.che.ide.ui.smartTree.presentation.NodePresentation in project che by eclipse.
the class AbstractPresentationNode method getPresentation.
@Override
public NodePresentation getPresentation(boolean update) {
if (nodePresentation == null) {
nodePresentation = new NodePresentation();
updatePresentation(nodePresentation);
}
if (update) {
updatePresentation(nodePresentation);
}
return nodePresentation;
}
use of org.eclipse.che.ide.ui.smartTree.presentation.NodePresentation in project che by eclipse.
the class SyntheticNode method getPresentation.
/** {@inheritDoc} */
@Override
public final NodePresentation getPresentation(boolean update) {
if (nodePresentation == null) {
nodePresentation = new NodePresentation();
updatePresentation(nodePresentation);
}
if (update) {
updatePresentation(nodePresentation);
}
return nodePresentation;
}
use of org.eclipse.che.ide.ui.smartTree.presentation.NodePresentation in project che by eclipse.
the class AbstractPresentationNode method getPresentation.
/** {@inheritDoc} */
@Override
public NodePresentation getPresentation(boolean update) {
if (nodePresentation == null) {
nodePresentation = new NodePresentation();
updatePresentation(nodePresentation);
}
if (update) {
updatePresentation(nodePresentation);
}
return nodePresentation;
}
use of org.eclipse.che.ide.ui.smartTree.presentation.NodePresentation in project che by eclipse.
the class ChangedFolderNode method getPresentation.
@Override
public NodePresentation getPresentation(boolean update) {
if (nodePresentation == null) {
nodePresentation = new NodePresentation();
updatePresentation(nodePresentation);
}
if (update) {
updatePresentation(nodePresentation);
}
return nodePresentation;
}
use of org.eclipse.che.ide.ui.smartTree.presentation.NodePresentation in project che by eclipse.
the class TestResultClassNode method getPresentation.
@Override
public NodePresentation getPresentation(boolean update) {
if (nodePresentation == null) {
nodePresentation = new NodePresentation();
updatePresentation(nodePresentation);
}
if (update) {
updatePresentation(nodePresentation);
}
return nodePresentation;
}
Aggregations