source: java/Framclipse/com.framsticks.framclipse/src/com/framsticks/framclipse/script/context/Framscontext.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: 577 bytes
Line 
1package com.framsticks.framclipse.script.context;
2
3import java.util.ArrayList;
4import java.util.Collections;
5import java.util.List;
6
7import com.thoughtworks.xstream.annotations.XStreamAlias;
8import com.thoughtworks.xstream.annotations.XStreamImplicit;
9
10@XStreamAlias("framscontext")
11public class Framscontext {
12
13        @XStreamImplicit(itemFieldName = "file")
14        private List<File> files = new ArrayList<File>();
15
16        public List<File> getFiles() {
17                return files;
18        }
19
20        public void setFiles(List<File> files) {
21                this.files = files != null ? files : Collections.<File> emptyList();
22        }
23
24}
Note: See TracBrowser for help on using the repository browser.