Project

General

Profile

Revision 8

Added by Willibald K. over 8 years ago

adding initial version of the AstBuilder feature, contributed by Stefan T.

View differences:

AttributeIdentifier.java
21 21
  *               Stephan Zimmerer (AIT)
22 22
  *               Markus Demetz (AIT)
23 23
  *               Christoph Czurda (AIT)
24
  *               Stefan Tiran (AIT)
24 25
  *
25 26
  */
26 27

  
......
61 62
		m_isObservable = isObservable;
62 63
	}
63 64

  
65
	public AttributeIdentifier(String name,
66
			UlyssesType aType,
67
			IScope aDefiningScope,
68
			Expression anInitializer,
69
			boolean isStatic,
70
			boolean isObservable,
71
			boolean isControllable)
72
	{
73
		super(name, aType, IdentifierKind.AttributeIdentifier, aDefiningScope);
74
		m_initializer = anInitializer;
75
		m_isStatic = isStatic;
76
		m_isControllable = isControllable;
77
		m_isObservable = isObservable;
78
	}
79

  
64 80
	public AttributeIdentifier(AttributeIdentifier toCopy)
65 81
	{
66 82
		super(toCopy);

Also available in: Unified diff