final case class MoveItem(destination: PlanetSideServerObject with Container, item: Equipment, destination_slot: Int) extends DeferrableMsg with Product with Serializable
The item should already be contained by us.
The item is being removed from our containment and placed into a fixed slot position in another container.
MoveItem
is a process that may be complicated and is one reason why DeferrableMsg
s are employed.
- destination
the container into which the item is being placed
- item
the item
- destination_slot
where in the destination container the item is being placed
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MoveItem
- Serializable
- Product
- Equals
- DeferrableMsg
- ContainableMsg
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new MoveItem(destination: PlanetSideServerObject with Container, item: Equipment, destination_slot: Int)
- destination
the container into which the item is being placed
- item
the item
- destination_slot
where in the destination container the item is being placed
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val destination: PlanetSideServerObject with Container
- val destination_slot: Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val item: Equipment
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()