-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathActor.java
35 lines (25 loc) · 934 Bytes
/
Actor.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import java.util.Vector;
import java.io.PrintWriter;
/******************************
* Copyright (c) 2003-2025 Kevin Lano
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
* *****************************/
public class Actor extends ModelElement
{ Vector dependenciesTo = new Vector(); // of Dependency to UseCase
Vector dependenciesFrom = new Vector(); // of Dependency from UseCase
public Actor(String nme)
{ super(nme); }
public void generateJava(PrintWriter out) { }
public void setType(Type t) { }
public Type getType()
{ return null; }
public void addParameter(Attribute att) { }
public Vector getParameters()
{ return new Vector(); }
public String saveData()
{ return ""; }
}