60616263646566
} @Override public Object getTurtleVariable(int vn) throws AgentException { throw new AgentException("the observer can't access a turtle variable without specifying which turtle"); }
6667686970717273
} @Override public Object getTurtleOrLinkVariable(String varName) throws AgentException { throw new AgentException ("the observer can't access a turtle or link variable without specifying which agent"); }
73747576777879
} @Override public Object getBreedVariable(String name) throws AgentException { throw new AgentException("the observer can't access a turtle variable without specifying which turtle"); }
7980818283848586
} @Override public Object getLinkVariable(int vn) throws AgentException { throw new AgentException ("the observer can't access a link variable without specifying which link"); }
8687888990919293
} @Override public Object getLinkBreedVariable(String name) throws AgentException { throw new AgentException ("the observer can't access a link variable without specifying which link"); }
93949596979899
} @Override public Object getPatchVariable(int vn) throws AgentException { throw new AgentException("the observer can't access a patch variable without specifying which patch"); }
122123124125126127128129
} @Override public void setTurtleVariable(int vn, Object value) throws AgentException { throw new AgentException ("the observer can't set a turtle variable without specifying which turtle"); }
129130131132133134135
} @Override public void setTurtleVariable(int vn, double value) throws AgentException { throw new AgentException("the observer can't set a turtle variable without specifying which turtle"); }
135136137138139140141
} @Override public void setBreedVariable(String name, Object value) throws AgentException { throw new AgentException("the observer can't set a turtle variable without specifying which turtle"); }
141142143144145146147
} @Override public void setPatchVariable(int vn, Object value) throws AgentException { throw new AgentException("the observer can't set a patch variable without specifying which turtle"); }