*/
public JAIBorder(CompositeEntity container, String name)
throws IllegalActionException, NameDuplicationException {
super(container, name);
leftPadding = new Parameter(this, "leftPadding", new IntToken(0));
rightPadding = new Parameter(this, "rightPadding", new IntToken(0));
topPadding = new Parameter(this, "topPadding", new IntToken(0));
bottomPadding = new Parameter(this, "bottomPadding", new IntToken(0));
borderType = new StringAttribute(this, "borderType");
borderType.setExpression("Zero");
_borderType = _BORDER_ZERO;
constants = new Parameter(this, "constants", new ArrayToken(
BaseType.DOUBLE, _initialArray));
}