01: /*
02: * $Id: LocalVariableType.java,v 1.8 2002/09/16 08:05:03 jkl Exp $
03: *
04: * Copyright (c) 2002 Njet Communications Ltd. All Rights Reserved.
05: *
06: * Use is subject to license terms, as defined in
07: * Anvil Sofware License, Version 1.1. See LICENSE
08: * file, or http://njet.org/license-1.1.txt
09: */
10: package anvil.script;
11:
12: /**
13: * interface LocalVariableType
14: *
15: * @author: Jani Lehtimäki
16: */
17: public interface LocalVariableType extends VariableType {
18:
19: }
|