| Package | graphics |
| Class | public class Corner |
| Inheritance | Corner Object |
| Implements | Cloneable, Equatable, Serializable |
| Property | Defined By | ||
|---|---|---|---|
| bl : Boolean = true
The bottom left flag value. | Corner | ||
| br : Boolean = true
The bottom right flag value. | Corner | ||
| tl : Boolean = true
The top left flag value. | Corner | ||
| tr : Boolean = true
The top right flag value. | Corner | ||
| Method | Defined By | ||
|---|---|---|---|
Corner(tl:Boolean = true, tr:Boolean = true, br:Boolean = true, bl:Boolean = true)
Creates a new Corner instance. | Corner | ||
clone():*
Creates and returns a shallow copy of the object. | Corner | ||
equals(o:*):Boolean
Compares the specified object with this object for equality. | Corner | ||
toSource(indent:int = 0):String
Returns a Eden representation of the object. | Corner | ||
toString():String
Returns the string representation of this object. | Corner | ||
| bl | property |
public var bl:Boolean = trueThe bottom left flag value.
| br | property |
public var br:Boolean = trueThe bottom right flag value.
| tl | property |
public var tl:Boolean = trueThe top left flag value.
| tr | property |
public var tr:Boolean = trueThe top right flag value.
| Corner | () | Constructor |
public function Corner(tl:Boolean = true, tr:Boolean = true, br:Boolean = true, bl:Boolean = true)Creates a new Corner instance.
Parameterstl:Boolean (default = true) — The bottom left flag value.
| |
tr:Boolean (default = true) — The bottom right flag value.
| |
br:Boolean (default = true) — The bottom right flag value.
| |
bl:Boolean (default = true) — The bottom left flag value.
|
| clone | () | method |
public function clone():*Creates and returns a shallow copy of the object.
Returns* — A new object that is a shallow copy of this instance.
|
| equals | () | method |
public function equals(o:*):BooleanCompares the specified object with this object for equality.
Parameters
o:* |
Boolean — true if the the specified object is equal with this object.
|
| toSource | () | method |
public function toSource(indent:int = 0):StringReturns a Eden representation of the object.
Parameters
indent:int (default = 0) |
String — a string representation the source code of the object.
|
| toString | () | method |
public function toString():StringReturns the string representation of this object.
ReturnsString — the string representation of this object.
|