Uses of Class
edu.uky.cs.nil.tt.world.Signature
Packages that use Signature
Package
Description
Story
worlds define the objects, concepts, and actions that
exist in a story, and story world models define the logic
for when actions can happen, how actions change the current state of world,
when endings happen, etc.-
Uses of Signature in edu.uky.cs.nil.tt.world
Fields in edu.uky.cs.nil.tt.world declared as SignatureModifier and TypeFieldDescriptionfinal SignatureSignedAsset.signatureThe asset's unique signatureMethods in edu.uky.cs.nil.tt.world that return SignatureMethods in edu.uky.cs.nil.tt.world with parameters of type SignatureModifier and TypeMethodDescriptionDefines a newaction.Defines a newending.AssetBuilder.addVariable(Signature signature, String encoding, String description) Defines a newvariable.Returns the action defined in this story world which has the given signature.Returns the ending defined in this story world which has the given signature.World.getVariable(Signature signature) Returns the variable defined in this story world which has the given signature.World.requireAction(Signature signature) Returns the action defined in this story world which has the given signature or throws an exception if it does not exist.World.requireEnding(Signature signature) Returns the ending defined in this story world which has the given signature or throws an exception if it does not exist.World.requireVariable(Signature signature) Returns the variable defined in this story world which has the given signature or throws an exception if it does not exist.protected ActionAction.setSignature(Signature signature) protected EndingEnding.setSignature(Signature signature) protected abstract SignedAssetSignedAsset.setSignature(Signature signature) Returns a new signed asset that is the same as this asset, except that its signature and name are the given value.protected VariableVariable.setSignature(Signature signature) Constructors in edu.uky.cs.nil.tt.world with parameters of type SignatureModifierConstructorDescriptionConstructs a new action.Constructs a new ending.SignedAsset(int id, Signature signature, String description) Constructs a new signed asset.Constructs a new variable.