Searched refs:directInterfaces (Results 1 - 7 of 7) sorted by relevance

/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DRemoteType.java173 Vector directInterfaces = new Vector();
177 if (isConformingRemoteInterface(directInterfaces,
185 result = initialize(directInterfaces,directMethods,directConstants,stack,quiet);
195 * @param directInterfaces All directly implmented interfaces will be
204 private boolean isConformingRemoteInterface ( Vector directInterfaces, argument
216 if (addRemoteInterfaces(directInterfaces,false,stack) == null ) {
H A DNCInterfaceType.java128 Vector directInterfaces = new Vector();
135 addNonRemoteInterfaces( directInterfaces,stack );
147 if (!initialize(directInterfaces,directMethods,directMembers,stack,false)) {
H A DImplementationType.java166 Vector directInterfaces = new Vector();
172 if (addRemoteInterfaces(directInterfaces,true,stack) != null) {
178 for (int i = 0; i < directInterfaces.size(); i++) {
179 InterfaceType theInt = (InterfaceType) directInterfaces.elementAt(i);
202 result = initialize(directInterfaces,directMethods,null,stack,quiet);
H A DNCClassType.java136 Vector directInterfaces = new Vector();
156 if (!initialize(directInterfaces,directMethods,directMembers,stack,false)) {
H A DValueType.java242 Vector directInterfaces = new Vector();
248 if (addNonRemoteInterfaces(directInterfaces,stack) != null) {
263 if (!initialize(directInterfaces,directMethods,directMembers,stack,quiet)) {
H A DCompoundType.java721 protected boolean initialize ( Vector directInterfaces, argument
731 if (directInterfaces != null && directInterfaces.size() > 0) {
732 interfaces = new InterfaceType[directInterfaces.size()];
733 directInterfaces.copyInto(interfaces);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLTypesUtil.java520 Class[] directInterfaces = c.getInterfaces();
522 if( directInterfaces.length < 2 ) {
529 for(int i = 0; i < directInterfaces.length; i++) {
530 Class next = directInterfaces[i];

Completed in 39 milliseconds