1 /*
2 * Copyright 2010 Fraunhofer Gesellschaft, Munich, Germany,
3 * for its Fraunhofer Institute for Computer Architecture and Software
4 * Technology (FIRST), Berlin, Germany. All rights reserved.
5 * http://www.first.fraunhofer.de/
6 */
7
8 package net.kwfgrid.gworkflowdl.structure;
9
10 /***
11 * User: hans
12 * Date: 28.03.2006
13 * Time: 11:49:18
14 */
15 public interface Owls {
16
17 void setOwls(String[] owls);
18
19 String[] getOwls();
20
21 void addOwl(String owl);
22
23 String removeOwl(String owl);
24
25 String removeOwl(int i);
26
27 int owlsCount();
28 }