Package xjavadoc

Examples of xjavadoc.Type


        super( delegate );
    }
   
    public TypeInstance getComponentType()
    {
        Type componentType = getDelegateType();
        int dimension = componentType.getDimension();
        assert dimension > 0 : "bad dimension " + dimension + " for array type " + componentType.getType();
        return WrapperFactory.get().getTypeInstance( componentType.getType(), dimension - 1 );
    }
View Full Code Here

TOP

Related Classes of xjavadoc.Type

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.