Package org.jboss.mbui.client.aui.mapping

Examples of org.jboss.mbui.client.aui.mapping.EntityContext


    public InteractionUnit(final String id, final String name)
    {
        assert id != null : "Id must not be null";
        this.id = id;
        this.name = name;
        this.entityContext = new EntityContext(id + ENTITY_CONTEXT_SUFFIX);
        this.children = new LinkedList<InteractionUnit>();
        this.role = InteractionRole.Overview;
    }
View Full Code Here

TOP

Related Classes of org.jboss.mbui.client.aui.mapping.EntityContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.