FileDocCategorySizeDatePackage
Constraint.javaAPI DocExample1135Sun Dec 14 22:47:30 GMT 2003oreilly.hcj.datamodeling.constraints

Constraint

public abstract class Constraint extends Object
Base class for all constraint types.
author
Robert Simmons jr.
version
$Revision: 1.1 $

Fields Summary
private String
name
Holds value of property name.
Constructors Summary
protected Constraint(String name)
Creates a new Constraint object.

param
name Contains the name of the constraint

		this.name = name;
	
Methods Summary
public java.lang.StringgetName()
Getter for property name.

return
Value of property name.

		return this.name;