All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class multilizer.Target

java.lang.Object
   |
   +----multilizer.Target

public class Target
extends Object
implements Serializable

Variable Index

 o className
 o positive
 o propertyName

Constructor Index

 o Target()
 o Target(String)
 o Target(String, String)
 o Target(String, String, boolean)

Method Index

 o match(String, String)
 o stringToTarget(String)
Converts the given string to a target.
 o targetToString(Target, boolean)
Converts the given target to a string.

Variables

 o positive
 public boolean positive
 o className
 public String className
 o propertyName
 public String propertyName

Constructors

 o Target
 public Target()
 o Target
 public Target(String propertyName)
 o Target
 public Target(String className,
               String propertyName)
 o Target
 public Target(String className,
               String propertyName,
               boolean positive)

Methods

 o stringToTarget
 public static Target stringToTarget(String str)
Converts the given string to a target. The string format must be [|+|-][*|componentType].[*|propertyName] (e.g. "*.text", "+*.text", or "*.*").

 o targetToString
 public static String targetToString(Target target,
                                     boolean longFormat)
Converts the given target to a string. The short string format is [-][*|componentType].[*|propertyName] (e.g. "*.text", "-*.text"). The long string format is [include |exclude ][*|componentType].[*|propertyName] (e.g. "include *.text").

 o match
 public boolean match(String className,
                      String propertyName)

All Packages  Class Hierarchy  This Package  Previous  Next  Index