Extension SDK 9.0.5

Uses of Interface
oracle.jdeveloper.jot.JotClass

Packages that use JotClass
oracle.jdeveloper.audit.java Helper and transform classes for auditing Java documents and working with the Java object model. 
oracle.jdeveloper.builder.cls The cls package provides classes and interfaces for generating Java classes. 
oracle.jdeveloper.cmt The Component Model Tool, an API for manipulating Java source code. 
oracle.jdeveloper.dialogs The Dialogs package contains commonly used dialogs. 
oracle.jdeveloper.jot Provides classes and interfaces for JOT (the Java Object Toolkit). 
oracle.jdeveloper.junit The oracle.jdeveloper.junit package contains classes that can be used to generate JUnit classes into a project. 
oracle.jdeveloper.webservices New public API to web services 
oracle.jdeveloper.webservices.util The utils package provides utility classes used by the web service API. 
 

Uses of JotClass in oracle.jdeveloper.audit.java
 

Methods in oracle.jdeveloper.audit.java that return JotClass
 JotClass JavaHelper.getClass(java.lang.String name)
          Gets a type by name, or null if not present.
 

Methods in oracle.jdeveloper.audit.java with parameters of type JotClass
 boolean JavaHelper.isAssignableFrom(JotClass target, JotClass source)
          Gets whether a class is assignable from another class.
 JotMethod JavaHelper.getDeclaredMethod(JotClass type, java.lang.String name, java.lang.String[] parameterTypes)
          Gets the method declared by a type that matches a signature, or null if no matching method is declared in the type.
 

Uses of JotClass in oracle.jdeveloper.builder.cls
 

Methods in oracle.jdeveloper.builder.cls with parameters of type JotClass
protected  void AbstractGenerator.addDetails(JotManager mgr, JotFile file, JotClass cls)
           
protected  void ClassGenerator.addDetails(JotManager mgr, JotFile file, JotClass cls)
           
protected  boolean ClassBuilderModel.validateClass(JotClass cls, java.lang.String pkg)
           
protected  boolean ClassBuilderModel._isClassAccessible(JotClass cls, java.lang.String pkg)
           
protected  void ClassBuilderModel.generate(JotFile file, JotClass cls)
           
 

Uses of JotClass in oracle.jdeveloper.cmt
 

Methods in oracle.jdeveloper.cmt that return JotClass
 JotClass CmtEventSet.getListenerType()
           
 JotClass CmtComponent.getType()
           
 JotClass CmtComponent.getLiveType()
           
 JotClass CmtSubcomponent.getDeclaredClass()
           
 JotClass CmtSubcomponent.getLiveClass()
           
 JotClass CmtSubcomponent.getComponentType()
           
 JotClass CmtSubcomponent.getRepresentedType()
          Gets the JotClass for the otherwise unrepresentable type that this instance is a proxy for.
 

Methods in oracle.jdeveloper.cmt with parameters of type JotClass
 CmtComponent CmtComponents.getComponent(JotClass clazz)
          Get a component given a JotClass.
protected abstract  CmtComponent CmtComponentManager.createComponent(JotClass jClass)
           
 CmtComponent CmtComponentManager.getComponent(JotClass clazz)
          Get a component given a JotClass that represents a class (not an interface)
 

Uses of JotClass in oracle.jdeveloper.dialogs
 

Methods in oracle.jdeveloper.dialogs with parameters of type JotClass
 boolean ClassPackageBrowserFilter.acceptClass(JotClass cls)
          Whether a class should be accepted.
 

Uses of JotClass in oracle.jdeveloper.jot
 

Subinterfaces of JotClass in oracle.jdeveloper.jot
 interface JotAnonymousClass
          The JotAnonymousClass interface represents an anonymous class declaration.
 interface JotInnerClass
          The JotInnerClass interface represents a class or interface that is nested within an outer class or interface.
 interface JotLocalClass
          The JotLocalClass interface corresponds to a local class declared within a code block.
 

Methods in oracle.jdeveloper.jot that return JotClass
 JotClass JotTypeInfo.getJotClass()
           
 JotClass JotType.getJotClass(int needs)
          Retrieves the read-only JOT representation of the definition of this class or interface.
 JotClass JotLibraryMember.getJotClass()
          Retrieves the actual JotClass for this member.
 JotClass JotLibrary.getClass(java.lang.String className)
           
 JotClass JotClassDatabase.getClass(java.lang.String className, int needs)
          Retrieves the JotClass for a specific class.
abstract  JotClass JotManager.getClass(JotFile importContext, java.lang.String className, int needs)
          Retrieves the JOT representation of a specific class, using the import context of a given file.
 JotClass JotMember.getDeclaringClass()
          Retrieves the class that contains this member declaration.
 JotClass JotClass.getDeclaringClass()
          Retrieves the class in which this class is declared.
 JotClass[] JotFile.getClasses()
          Retrieves the classes defined in this file.
 JotClass JotFile.getClass(java.lang.String name)
          Retrieves a class by name.
 JotClass JotFile.addClass(java.lang.String name)
          Adds a new class declaration to this file.
 JotClass JotFile.addClass(int index, java.lang.String name)
          Adds a new class declaration to this file at a specific location.
 

Methods in oracle.jdeveloper.jot with parameters of type JotClass
static java.util.Set JotManager.buildInterfaceList(JotClass cls)
          Builds a list of all the interfaces implemented by a class or extended by an interface.
static java.util.List JotManager.buildClassAndInterfaceList(JotClass cls)
          Builds a list of all the superclasses and superinterfaces of a specified class.
 boolean JotClass.isAssignableFrom(JotClass cls)
          Tests whether the type represented by this JotClass instance is either the same as, or is a superclass or superinterface of, a given class.
 void JotClass.removeInnerClass(JotClass cls)
          Removes a member class from this class or interface.
 void JotFile.removeClass(JotClass cls)
          Removes a class from this file.
 int JotFile.getClassIndex(JotClass cls)
          Retrieves the index of the class in this file.
 JotDocComment JotFile.setDocComment(JotClass cls, java.lang.String text)
          Sets the JavaDoc comment for a class.
 JotDocComment JotFile.getDocComment(JotClass cls)
          Retrieves the current JavaDoc comment for a class.
 

Uses of JotClass in oracle.jdeveloper.junit
 

Methods in oracle.jdeveloper.junit that return JotClass
 JotClass TestFixture.getJotClass()
          Returns the JotClass for the TestFixture implementation class.
 JotClass TestCaseContainer.getJotClass()
          Returns the JotClass that has been generated for this TestCaseContainer.
 JotClass TestCase.getJotClass()
          Returns the JotClass that has been generated for this TestCase.
 

Methods in oracle.jdeveloper.junit with parameters of type JotClass
static TestCase TestFactory.createTestCaseFromClass(JProject project, JotClass testClass)
          This method creates a TestCase from an existing Java class.
static TestFixture TestFactory.createTestFixtureFromClass(JProject project, JotClass fixtureClass)
          This method creates a TestFixture from an existing Java class.
 

Uses of JotClass in oracle.jdeveloper.webservices
 

Methods in oracle.jdeveloper.webservices that return JotClass
 JotClass JAXRPCJavaModel.getServiceInterfaceJOT()
           
 JotClass JAXRPCJavaModel.getClassJOT()
           
 

Uses of JotClass in oracle.jdeveloper.webservices.util
 

Methods in oracle.jdeveloper.webservices.util that return JotClass
 JotClass MethodSignature.getDeclaringClass(JotClass searchClass)
          Search the supplied JotClass for a method whose signature matches the one encoded in this MethodSignature, and return the JotClass in which that method is declared.
 

Methods in oracle.jdeveloper.webservices.util with parameters of type JotClass
 JotMethod MethodSignature.findMethod(JotClass searchClass)
          Search the supplied JotClass for a method whose signature matches the one encoded in this MethodSignature, and return it.
 JotClass MethodSignature.getDeclaringClass(JotClass searchClass)
          Search the supplied JotClass for a method whose signature matches the one encoded in this MethodSignature, and return the JotClass in which that method is declared.
 boolean MethodSignature.signaturesEqual(MethodSignature comp, JotClass ctxClass)
          Check whether the signature of this method matches that of the one supplied.
 boolean MethodSignature.typesMatch(java.lang.String type1, java.lang.String type2, JotClass ctxClass)
          Compare the two types given and return true if they are the same.
 int MethodSignature.validate(JotClass ctxClass)
          Validate each of the components of the method signature and return a code indicating if any errors were found.
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.