⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 groupnode.java

📁 对eclipse gef进行封装,可以生成图形化编辑器
💻 JAVA
字号:
/**
 * <copyright>
 * </copyright>
 *
 * $Id: GroupNode.java,v 1.2 2006/12/30 02:45:06 niegy Exp $
 */
package com.primeton.studio.gef.core;

import org.eclipse.emf.common.util.EList;

import java.util.Collection;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Group Node</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link com.primeton.studio.gef.core.GroupNode#getChidren <em>Chidren</em>}</li>
 * </ul>
 * </p>
 *
 * @see com.primeton.studio.gef.core.CorePackage#getGroupNode()
 * @model
 * @generated
 */
public interface GroupNode extends NodeElement {
	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	String copyright = "";
	
	/**
	 * Returns the value of the '<em><b>Chidren</b></em>' attribute list.
	 * The list contents are of type {@link java.lang.String}.
	 * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Chidren</em>' attribute list isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Chidren</em>' attribute list.
	 * @see com.primeton.studio.gef.core.CorePackage#getGroupNode_Chidren()
	 * @model type="java.lang.String" dataType="org.eclipse.emf.ecore.xml.type.String"
	 * @generated
	 */
	EList getChidren();

    public abstract void groupAll(Collection collection);

    public abstract void ungroupAll(Collection collection);
    
    public abstract void ungroupAll();
    
    public abstract void groupAll();
    
    public abstract NodeElement findNodeforId(String id,Node parent);

} // GroupNode

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -