Class Domain
- java.lang.Object
-
- org.apache.torque.templates.model.Domain
-
public class Domain extends Object
The model of the domain tag in a Torque schema file.- Version:
- $Id: $
-
-
Field Summary
Fields Modifier and Type Field Description String
_default
The default value of the columns belonging to this domain.String
description
The description of this domain.String
name
The name of the domain.Database
parent
The database where this domain is defined.String
scale
The scale of the columns belonging to this domain.String
size
The size of the columns belonging to this domain.String
type
The torque type of the columns belonging to this domain.
-
Constructor Summary
Constructors Constructor Description Domain()
-
-
-
Field Detail
-
parent
public Database parent
The database where this domain is defined.
-
name
public String name
The name of the domain.
-
type
public String type
The torque type of the columns belonging to this domain.
-
size
public String size
The size of the columns belonging to this domain.
-
scale
public String scale
The scale of the columns belonging to this domain.
-
_default
public String _default
The default value of the columns belonging to this domain.
-
description
public String description
The description of this domain.
-
-