Java 类org.eclipse.ui.views.properties.PropertySheetEntry 实例源码

项目:PDFReporter-Studio    文件:JRPropertySheetEntry.java   
protected void valueChanged(PropertySheetEntry child) {
    // StructuredSelection selections =
    // (StructuredSelection)SelectionHelper.getActiveJRXMLEditor().getSite().getSelectionProvider().getSelection();

    valueChanged((JRPropertySheetEntry) child, new ForwardUndoCompoundCommand(), Arrays.asList(getValues()));
}
项目:gef-gwt    文件:UndoablePropertySheetEntry.java   
/**
 * @see org.eclipse.ui.views.properties.PropertySheetEntry#createChildEntry()
 */
protected PropertySheetEntry createChildEntry() {
    return new UndoablePropertySheetEntry();
}
项目:gef-gwt    文件:UndoablePropertySheetEntry.java   
/**
 * @see PropertySheetEntry#valueChanged(PropertySheetEntry)
 */
protected void valueChanged(PropertySheetEntry child) {
    valueChanged((UndoablePropertySheetEntry) child,
            new ForwardUndoCompoundCommand());
}