eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/views/DateTimeCellEditor.java [31:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public DateTimeCellEditor(Composite parent, JcrNode node, String propertyName) {
        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;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eclipse/eclipse-ui/src/org/apache/sling/ide/eclipse/ui/views/MVNCellEditor.java [31:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public MVNCellEditor(Composite parent, JcrNode node, String propertyName) {
        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;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



