Examples of AbstractName


Examples of org.apache.geronimo.gbean.AbstractName

        }

        // a bit of a hack, but the PersistentConfigurationList is the only thing that knows whether the server is full started!
        Set configLists = kernel.listGBeans(new AbstractNameQuery(PersistentConfigurationList.class.getName()));
        for (Iterator i = configLists.iterator(); i.hasNext();) {
            AbstractName configListName = (AbstractName) i.next();
            try {
                Boolean result = (Boolean) kernel.getAttribute(configListName, "kernelFullyStarted");
                if (!result.booleanValue()) {
                    return false;
                }
View Full Code Here

Examples of org.apache.sis.util.iso.AbstractName

     * @see #getTypeName()
     * @see #getMemberName()
     */
    @XmlElement(name = "LocalName")
    public final String getLocalName() {
        final AbstractName name = this.name;
        return (name instanceof LocalName) && !(name instanceof TypeName)
                && !(name instanceof MemberName) ? name.toString() : null;
    }
View Full Code Here

Examples of org.foray.fotree.fo.prop.AbstractName

    /**
     * Returns the flow-name property.
     * @return The flow-name property.
     */
    public String getFlowName() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.FLOW_NAME);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.