📄 mobjectstate.java
字号:
/* * USE - UML based specification environment * Copyright (C) 1999-2004 Mark Richters, University of Bremen * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* $ProjectHeader: use 2-3-0-release.1 Mon, 12 Sep 2005 20:18:33 +0200 green $ */package org.tzi.use.uml.sys;import java.util.Iterator;import java.util.Map;import java.util.TreeMap;import org.tzi.use.uml.mm.MAttribute;import org.tzi.use.uml.ocl.value.UndefinedValue;import org.tzi.use.uml.ocl.value.Value;/** * An object state is the state of an object in a given system state. * * @version $ProjectVersion: 2-3-0-release.1 $ * @author Mark Richters */public final class MObjectState { /** * Slots holding a value for each attribute. */ private TreeMap fAttrSlots; // (attr : MAttribute -> Value) private MObject fObject; // owner object /** * Constructs a new object state. */ MObjectState(MObject obj) { fObject = obj; // initialize attribute slots with undefined values fAttrSlots = new TreeMap(); Iterator it = obj.cls().allAttributes().iterator(); while (it.hasNext() ) { MAttribute attr = (MAttribute) it.next(); fAttrSlots.put(attr, new UndefinedValue(attr.type())); } } /** * Copy constructor. */ MObjectState(MObjectState x) { fObject = x.fObject; fAttrSlots = (TreeMap) x.fAttrSlots.clone(); } /** * Returns the object. */ public MObject object() { return fObject; } /** * Returns the value of the specified attribute. * * @exception IllegalArgumentException attr is not part of this object. */ public Value attributeValue(MAttribute attr) { Value val = (Value) fAttrSlots.get(attr); if (val == null ) throw new IllegalArgumentException("Attribute `" + attr + "' does not exist in object `" + fObject.name() + "'."); return val; } /** * Assigns a new value to the specified attribute. * * @exception IllegalArgumentException attr is not part of this * object or types don't match. */ public void setAttributeValue(MAttribute attr, Value newVal) { Value oldVal = (Value) fAttrSlots.get(attr); if (oldVal == null ) throw new IllegalArgumentException("Attribute `" + attr + "' does not exist in object `" + fObject.name() + "'."); if (! newVal.type().isSubtypeOf(attr.type()) ) throw new IllegalArgumentException("Expected type `" + attr.type() + "' for attribute `" + attr.name() + "', found type `" + newVal.type() + "'."); fAttrSlots.put(attr, newVal); } /** * Returns a map with attribute/value pairs. Do not modify this * map! * * @return Map(MAttribute, Value) */ public Map attributeValueMap() { return fAttrSlots; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -