Extension SDK 9.0.5

Uses of Interface
oracle.jdeveloper.jot.JotMethod

Packages that use JotMethod
oracle.jdeveloper.audit.java Helper and transform classes for auditing Java documents and working with the Java object model. 
oracle.jdeveloper.cmt The Component Model Tool, an API for manipulating Java source code. 
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 JotMethod in oracle.jdeveloper.audit.java
 

Methods in oracle.jdeveloper.audit.java that return JotMethod
 JotMethod JavaHelper.getCalledMethod(JotMethodCall expression)
          Gets the method called by a method call, or null if the method call is unresolvable.
 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.
 

Methods in oracle.jdeveloper.audit.java with parameters of type JotMethod
 java.util.Set JavaHelper.getUses(JotMethod method)
          Gets the uses of a method within the constructs audited.
 boolean JavaHelper.matches(JotMethod method, java.lang.String name, java.lang.String[] parameterTypes)
          Gets whether a method matches a signature.
 

Uses of JotMethod in oracle.jdeveloper.cmt
 

Methods in oracle.jdeveloper.cmt that return JotMethod
 JotMethod CmtEvent.getListenerMethod()
           
 JotMethod[] CmtEventSet.getListenerMethods()
           
 JotMethod CmtEventSet.getAddListenerMethod()
           
 JotMethod CmtEventSet.getRemoveListenerMethod()
           
 JotMethod CmtProperty.getReadMethod()
           
 JotMethod CmtProperty.getWriteMethod()
           
 JotMethod CmtMethod.getJotMethod()
           
 

Uses of JotMethod in oracle.jdeveloper.jot
 

Subinterfaces of JotMethod in oracle.jdeveloper.jot
 interface JotConstructor
          The JOT representation of Java constuctor declarations.
 

Methods in oracle.jdeveloper.jot that return JotMethod
 JotMethod JotMethod.getOverriddenMethod()
           
 JotMethod[] JotClass.getDeclaredMethods()
          Creates an array of all declared method members.
 JotMethod[] JotClass.getDeclaredMethods(java.lang.String name)
          Creates an array of all declared methods having a given name.
 JotMethod JotClass.getDeclaredMethod(java.lang.String name, JotType[] parameterTypes)
          Gets the declared method having the given name and parameter types.
 JotMethod[] JotClass.getMethods()
          Creates an array of public declared and inherited method members.
 JotMethod[] JotClass.getMethods(java.lang.String methodName)
          Creates an array of declared and inherited public methods having a given name.
 JotMethod JotClass.getMethod(java.lang.String name, JotType[] parameterTypes)
          Gets the declared or inherited public method having the given name and parameter types.
 JotMethod JotClass.addMethod(JotMember member, boolean before, java.lang.String returnType, java.lang.String name)
          Adds a new method to this type.
 

Methods in oracle.jdeveloper.jot with parameters of type JotMethod
 JotElement[] JotManipulations.findAllMethodReferences(JotType type, JotMethod method, java.lang.String[] packageScope)
          Finds all the references to the specified class and member in the search scope.
 void JotClass.removeMethod(JotMethod method)
          Removes an existing method from this type.
 

Uses of JotMethod in oracle.jdeveloper.junit
 

Methods in oracle.jdeveloper.junit with parameters of type JotMethod
 void TestCase.addToSuiteMethod(TestCaseContainer suite, JotMethod method)
          This method is called by the TestSuite to give the TestCase the opportunity to install itself into the TestSuite's suite() method.
 void TestCase.addTestMethod(JotMethod method)
          Adds a method to be tested.
 

Uses of JotMethod in oracle.jdeveloper.webservices
 

Methods in oracle.jdeveloper.webservices with parameters of type JotMethod
 java.lang.String JAXRPCJavaModel.getMethodPublishableStatus(JotMethod method)
          Determine whether a particular JotMethod is publishable, and return a reason why if it isn't.
 java.util.Set JAXRPCJavaModel.getBeansUsedByMethod(JotMethod method)
          Determine which JavaBeans are used by a particular method in a web service.
 

Uses of JotMethod in oracle.jdeveloper.webservices.util
 

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

Methods in oracle.jdeveloper.webservices.util with parameters of type JotMethod
 boolean MethodSignature.matchesJotMethod(JotMethod jotMethod)
          Check whether this signature matches that of the supplied JotMethod.
 

Constructors in oracle.jdeveloper.webservices.util with parameters of type JotMethod
MethodSignature(JotMethod method)
          Construct a MethodSignature object based on the JotMethod supplied.
 


Extension SDK

 

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