blob: f8dce8be32ca43b89f2b8e3ed276d3c93f9df53e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.ui.internal.common.properties.sections.appinfo.custom;
import org.w3c.dom.Node;
public abstract class NodeEditorConfiguration
{
public final static int STYLE_NONE = 0;
public final static int STYLE_TEXT = 1;
public final static int STYLE_COMBO = 2;
public final static int STYLE_DIALOG = 4;
public abstract int getStyle();
private Node node;
private Node parentNode;
public Node getNode()
{
return node;
}
public void setNode(Node node)
{
this.node = node;
}
public Node getParentNode()
{
return parentNode;
}
public void setParentNode(Node parentNode)
{
this.parentNode = parentNode;
}
}