All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mapway.document.ui.client.module.Group Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.document.ui.client.module;


import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArray;

// TODO: Auto-generated Javadoc

/**
 * 接口组对象.
 *
 * @author zhangjianshe
 */
public class Group extends JavaScriptObject {

    /**
     * Instantiates a new group.
     */
    protected Group() {
	}

    /**
     * 节点名称.
     *
     * @return the string
     */
    public  final native String name()/*-{
		return this.name;
	}-*/;

    /**
     * 节点全路径名称.
     *
     * @return the string
     */
    public  final native String fullName()/*-{
		return this.fullName;
	}-*/;

    /**
     * 节点说明.
     *
     * @return the string
     */
    public  final native String summary()/*-{
		return this.summary;
	}-*/;

    /**
     * 子节点.
     *
     * @return the js array
     */
    public  final native JsArray entries()/*-{
		return this.entries || [];
	}-*/;

    /**
     * 子分组.
     *
     * @return the js array
     */
    public final native JsArray subGroups()/*-{
		return this.subGroups || [];
	}-*/;

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy