package com.framsticks.framclipse.script.context; import com.thoughtworks.xstream.annotations.XStreamAsAttribute; public class Context { @XStreamAsAttribute private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }