home *** CD-ROM | disk | FTP | other *** search
- package org.cove.ape
- {
- import flash.utils.getQualifiedClassName;
-
- public class AbstractConstraint extends AbstractItem
- {
-
-
- private var _stiffness:Number;
-
- public function AbstractConstraint(param1:Number)
- {
- super();
- if(getQualifiedClassName(this) == "org.cove.ape::AbstractConstraint")
- {
- throw new ArgumentError("AbstractConstraint can\'t be instantiated directly");
- }
- this.stiffness = param1;
- setStyle();
- }
-
- public function get stiffness() : Number
- {
- return _stiffness;
- }
-
- public function set stiffness(param1:Number) : void
- {
- _stiffness = param1;
- }
-
- internal function resolve() : void
- {
- }
- }
- }
-