1 16 package com.buchuki.ensmer.prevayler; 17 18 import java.io.Serializable ; 19 import java.util.*; 20 21 import javax.vecmath.Matrix4f; 22 23 30 public class PrevayledArea implements Serializable { 31 32 36 static final long serialVersionUID = 20050328L; 37 38 43 public Matrix4f getUserPosition() { 44 return userPosition; 45 } 46 47 52 public void setUserPosition(Matrix4f userPosition) { 53 this.userPosition = userPosition; 54 } 55 56 61 public void setReadOnly(boolean readOnly) { 62 this.readOnly = readOnly; 63 } 64 65 70 public boolean isReadOnly() { 71 return readOnly; 72 } 73 74 77 private Matrix4f userPosition; 78 79 82 private boolean readOnly; 83 } 84 85 | Popular Tags |