blob: ca23518818ae9bdd8ce0d3270fb51eb430c1bc4d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hisashi MIYASHITA - initial API and implementation
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.flash.as;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
public class ASObject {
private final Map<String, Object> map;
ASObject() {
this.map = new HashMap<String, Object>();
}
Object put(String prop, Object obj) {
return map.put(prop, obj);
}
public Object get(String prop) {
return map.get(prop);
}
public Set<String> getKeys() {
return map.keySet();
}
@Override
public String toString() {
StringBuffer ret = new StringBuffer();
Iterator<String> it = map.keySet().iterator();
while (it.hasNext()) {
String prop = it.next();
ret.append(prop);
ret.append(":");
ret.append("" + map.get(prop));
ret.append(",");
}
return ret.toString();
}
}