eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/views/DateTimeCellEditor.java [32:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(parent);
        if (node==null) {
            throw new IllegalArgumentException("node must not be null");
        }
        if (propertyName==null || propertyName.length()==0) {
            throw new IllegalArgumentException("propertyName must not be null or empty");
        }
        this.node = node;
        this.propertyName = propertyName;
    }
    
    @Override
    protected Object openDialogBox(Control cellEditorWindow) {
        final JcrProperty property = node.getProperty(propertyName);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/views/MVNCellEditor.java [32:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super(parent);
        if (node==null) {
            throw new IllegalArgumentException("node must not be null");
        }
        if (propertyName==null || propertyName.length()==0) {
            throw new IllegalArgumentException("propertyName must not be null or empty");
        }
        this.node = node;
        this.propertyName = propertyName;
    }
    
    @Override
    protected Object openDialogBox(Control cellEditorWindow) {
        final JcrProperty property = node.getProperty(propertyName);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



