ilog.rules.engine
Class IlrCompiledTaskRefactoring
- java.lang.Object
-
- ilog.rules.engine.IlrCompiledTaskRefactoring
-
Deprecated.As of IBM Decision Server 7.5, this class is deprecated with no replacement.
public class IlrCompiledTaskRefactoring extends java.lang.ObjectThis class is there to specify the refactoring of a compiled task.
-
-
Constructor Summary
Constructors Constructor and Description IlrCompiledTaskRefactoring()Deprecated.Builds an empty instance.
-
Method Summary
Methods Modifier and Type Method and Description booleanexistsClassNameRefactoring()Deprecated.Tests if there is at least a class name refactoring specified.booleanexistsPackageNameRefactoring()Deprecated.Tests if there is at least a package name refactoring specified.java.lang.StringgetClassNameRefactoring(java.lang.String oldFullName)Deprecated.Gets a class name refactoring specification.java.lang.StringgetPackageNameRefactoring(java.lang.String oldFullName)Deprecated.Gets a package name refactoring specification.java.lang.String[]getRefactoredClassNames()Deprecated.Gets all the fully qualified class name which should be refactored.java.lang.String[]getRefactoredPackageNames()Deprecated.Gets all the package name which should be refactored.booleanisEmpty()Deprecated.Tests if there is at least a refactoring specified.voidputClassNameRefactoring(java.lang.String oldFullName, java.lang.String newFullName)Deprecated.Puts a class name refactoring specification.voidputPackageNameRefactoring(java.lang.String oldFullName, java.lang.String newFullName)Deprecated.Puts a package name refactoring specification.
-
-
-
Constructor Detail
-
IlrCompiledTaskRefactoring
public IlrCompiledTaskRefactoring()
Deprecated.Builds an empty instance.
-
-
Method Detail
-
isEmpty
public final boolean isEmpty()
Deprecated.Tests if there is at least a refactoring specified.
- Returns:
- the result of the test.
-
existsPackageNameRefactoring
public final boolean existsPackageNameRefactoring()
Deprecated.Tests if there is at least a package name refactoring specified.
- Returns:
- the result of the test.
-
getRefactoredPackageNames
public final java.lang.String[] getRefactoredPackageNames()
Deprecated.Gets all the package name which should be refactored.
- Returns:
- the package names.
-
getPackageNameRefactoring
public final java.lang.String getPackageNameRefactoring(java.lang.String oldFullName)
Deprecated.Gets a package name refactoring specification.
- Parameters:
oldFullName- The old fully qualified name of the package.- Returns:
- the new fully qualified name of the package.
-
putPackageNameRefactoring
public final void putPackageNameRefactoring(java.lang.String oldFullName, java.lang.String newFullName)Deprecated.Puts a package name refactoring specification.
- Parameters:
oldFullName- The old fully qualified name of the package.newFullName- The new fully qualified name of the package.
-
existsClassNameRefactoring
public final boolean existsClassNameRefactoring()
Deprecated.Tests if there is at least a class name refactoring specified.
- Returns:
- the result of the test.
-
getRefactoredClassNames
public final java.lang.String[] getRefactoredClassNames()
Deprecated.Gets all the fully qualified class name which should be refactored.
- Returns:
- the fully qualified class names.
-
getClassNameRefactoring
public final java.lang.String getClassNameRefactoring(java.lang.String oldFullName)
Deprecated.Gets a class name refactoring specification.
- Parameters:
oldFullName- The old fully qualified name of the class.- Returns:
- the new fully qualified name of the class.
-
putClassNameRefactoring
public final void putClassNameRefactoring(java.lang.String oldFullName, java.lang.String newFullName)Deprecated.Puts a class name refactoring specification.
- Parameters:
oldFullName- The old fully qualified name of the class.newFullName- The new fully qualified name of the class.
-
-