/** * Copyright (c) 2004-2011 Wang Jinbao(Julian Wong), http://www.ralasafe.com * Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php */ package org.ralasafe.script; public class RawScript { private String content = ""; public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String toScript() { return content; } }