use of org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart in project jbosstools-hibernate by jbosstools.
the class ShapeCollapseAction method canPerformAction.
private boolean canPerformAction() {
boolean res = false;
if (getSelectedObjects().isEmpty()) {
return res;
}
Iterator<?> it = getSelectedObjects().iterator();
while (it.hasNext() && !res) {
Object firstElement = it.next();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof ExpandableShape) {
ExpandableShape es = (ExpandableShape) obj;
if (es.isExpanded()) {
res = true;
}
}
}
return res;
}
use of org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart in project jbosstools-hibernate by jbosstools.
the class ShapeExpandAction method getCommand.
public Command getCommand() {
CompoundCommand cc = new CompoundCommand();
if (getSelectedObjects().isEmpty()) {
return cc;
}
List<ExpandableShape> selectedShape = new ArrayList<ExpandableShape>();
Iterator<?> it = getSelectedObjects().iterator();
while (it.hasNext()) {
Object firstElement = it.next();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof ExpandableShape) {
ExpandableShape es = (ExpandableShape) obj;
if (!es.isExpanded()) {
selectedShape.add(es);
}
}
}
if (selectedShape.size() > 0) {
cc.add(new ToggleShapeExpandStateCommand(selectedShape, null));
}
return cc;
}
use of org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart in project jbosstools-hibernate by jbosstools.
the class ShapeShowAction method canPerformAction.
private boolean canPerformAction() {
boolean res = false;
if (getSelectedObjects().isEmpty()) {
return res;
}
Iterator<?> it = getSelectedObjects().iterator();
while (it.hasNext() && !res) {
Object firstElement = it.next();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof OrmShape) {
OrmShape ormShape = (OrmShape) obj;
Object ormElement = ormShape.getOrmElement();
if (ormElement instanceof IPersistentClass || ormElement instanceof ITable) {
if (!ormShape.isVisible()) {
res = true;
}
}
}
}
return res;
}
use of org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart in project jbosstools-hibernate by jbosstools.
the class ShapeShowAction method getCommand.
public Command getCommand() {
CompoundCommand cc = new CompoundCommand();
if (getSelectedObjects().isEmpty()) {
return cc;
}
List<OrmShape> selectedShape = new ArrayList<OrmShape>();
Iterator<?> it = getSelectedObjects().iterator();
while (it.hasNext()) {
Object firstElement = it.next();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof OrmShape) {
OrmShape ormShape = (OrmShape) obj;
if (!ormShape.isVisible()) {
selectedShape.add(ormShape);
}
}
}
if (selectedShape.size() > 0) {
cc.add(new ToggleShapeVisibleStateCommand(selectedShape, null));
}
return cc;
}
use of org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart in project jbosstools-hibernate by jbosstools.
the class ToggleShapeExpandStateAction method getCommand.
public Command getCommand() {
CompoundCommand cc = new CompoundCommand();
if (getSelectedObjects().isEmpty()) {
return cc;
}
List<ExpandableShape> selectedShape = new ArrayList<ExpandableShape>();
Iterator<?> it = getSelectedObjects().iterator();
while (it.hasNext()) {
Object firstElement = it.next();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof ExpandableShape) {
selectedShape.add((ExpandableShape) obj);
}
}
ExpandableShape primalElement = null;
if (getSelection() instanceof IStructuredSelection) {
Object firstElement = ((IStructuredSelection) getSelection()).getFirstElement();
Object obj = null;
if (firstElement instanceof OrmEditPart) {
obj = ((OrmEditPart) firstElement).getModel();
} else if (firstElement instanceof AbstractTreeEditPart) {
obj = ((AbstractTreeEditPart) firstElement).getModel();
}
if (null != obj && obj instanceof ExpandableShape) {
primalElement = (ExpandableShape) obj;
}
}
if (selectedShape.size() > 0) {
cc.add(new ToggleShapeExpandStateCommand(selectedShape, primalElement));
}
return cc;
}
Aggregations