source: java/Framclipse/com.framsticks.framclipse/src/com/framsticks/framclipse/script/model/Framscript.java @ 437

Last change on this file since 437 was 437, checked in by Mateusz Poszwa, 9 years ago

Added Framclipse as developed by Bartosz Kukawka and Tomek Maciejewski in 2010

  • Property svn:eol-style set to native
File size: 372 bytes
Line 
1package com.framsticks.framclipse.script.model;
2
3import java.util.List;
4
5import com.thoughtworks.xstream.annotations.XStreamAlias;
6import com.thoughtworks.xstream.annotations.XStreamImplicit;
7
8@XStreamAlias("framscript")
9public class Framscript {
10
11        @XStreamImplicit(itemFieldName = "type")
12        private List<Type> types;
13
14        public List<Type> getTypes() {
15                return types;
16        }
17
18}
Note: See TracBrowser for help on using the repository browser.