Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

oracle.jbo.common
Class GroovyParserUtil

java.lang.Object
  extended by oracle.jbo.common.GroovyParserUtil

Deprecated.

public class GroovyParserUtil
extends java.lang.Object

Utility class to get parsed content of Groovy scripts For internal framework use only.


Constructor Summary
GroovyParserUtil(java.lang.String scriptStr)
          Deprecated.  
 
Method Summary
 java.util.Set<java.lang.String> getAssignedUnboundVariables()
          Deprecated.  
 java.util.Set<java.lang.String> getClassesUsed()
          Deprecated.  
 java.util.Set<java.lang.String> getMethodsUsed()
          Deprecated.  
 java.util.Set<java.lang.String> getUnboundVariables()
          Deprecated.  
 java.util.Set<java.lang.String> getUnboundVariablesWithoutNullCheck()
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GroovyParserUtil

public GroovyParserUtil(java.lang.String scriptStr)
Deprecated. 

Create a new parser utility class, using supplied script String For internal framework use only.

Parameters:
scriptStr - The script to parse
Method Detail

getUnboundVariables

public java.util.Set<java.lang.String> getUnboundVariables()
Deprecated. 

Get the list of all variables which will go to Groovy's Binding at the time the script is run, with the exception of those which are lvalues in assignments (i.e., "lvalue = rvalue") For internal framework use only.

Returns:
a set of strings that are all unbound variables

getAssignedUnboundVariables

public java.util.Set<java.lang.String> getAssignedUnboundVariables()
Deprecated. 

Get the list of all variables which will go to Groovy's Binding at the time the script is run for the purpose of assignment. (i.e., "lvalue = rvalue"). Note that if you declare a variable locally, it won't go to the binding, and won't be listed here. (i.e., "String lvalue = rvalue") For internal framework use only.

Returns:
a set of strings that are all unbound variables which are set via "=" operator

getClassesUsed

public java.util.Set<java.lang.String> getClassesUsed()
Deprecated. 

Gets the set of all classes which have methods called. For internal framework use only.

Returns:
a set of strings that are all the classes who have methods used

getMethodsUsed

public java.util.Set<java.lang.String> getMethodsUsed()
Deprecated. 

Gets the set of all methods which are called directly via the script. For internal framework use only.

Returns:
a set a strings that are all the methods which are directly called by the script

getUnboundVariablesWithoutNullCheck

public java.util.Set<java.lang.String> getUnboundVariablesWithoutNullCheck()
Deprecated. 

Get the list of all variables which will go to Groovy's Binding at the time the script is run, which are not guarded by a call to nvl(). For internal framework use only.

Returns:
a set of strings that are all unbound variables with null check

Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

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