Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3f0e8eff56b4a3843bb25a25b34004e41301e6cc (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*******************************************************************************
 * Copyright (c) 2008 Oracle. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0, which accompanies this distribution
 * and is available at http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.core.internal.context.java;

import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.context.Column;
import org.eclipse.jpt.core.internal.resource.java.NullBaseColumn;
import org.eclipse.jpt.core.resource.java.Annotation;
import org.eclipse.jpt.core.resource.java.AttributeOverrideAnnotation;
import org.eclipse.jpt.core.resource.java.ColumnAnnotation;
import org.eclipse.jpt.core.utility.TextRange;


public class VirtualAttributeOverrideColumn extends NullBaseColumn implements ColumnAnnotation, Annotation
{	
	private Column column;
	
	public VirtualAttributeOverrideColumn(AttributeOverrideAnnotation parent, Column column) {
		super(parent);
		this.column = column;
	}

	@Override
	public AttributeOverrideAnnotation getParent() {
		return (AttributeOverrideAnnotation) super.getParent();
	}
	
	public String getAnnotationName() {
		return ColumnAnnotation.ANNOTATION_NAME;
	}

	@Override
	protected ColumnAnnotation createColumnResource() {
		return getParent().addColumn();
	}

	@Override
	public String getName() {
		if (this.column.getSpecifiedName() != null) {
			return this.column.getSpecifiedName();
		}
		return null;
	}
	
	@Override
	public String getTable() {
		if (this.column.getSpecifiedTable() != null) {
			return this.column.getSpecifiedTable();
		}
		return null;
	}
	
	@Override
	public Boolean getInsertable() {
		if (this.column.getSpecifiedInsertable() != null) {
			return this.column.getSpecifiedInsertable();
		}
		return null;
	}
	
	@Override
	public Boolean getUpdatable() {
		if (this.column.getSpecifiedUpdatable() != null) {
			return this.column.getSpecifiedUpdatable();
		}
		return null;
	}
	@Override
	public Boolean getNullable() {
		if (this.column.getSpecifiedNullable() != null) {
			return this.column.getSpecifiedNullable();
		}
		return null;
	}
	
	@Override
	public Boolean getUnique() {
		if (this.column.getSpecifiedUnique() != null) {
			return this.column.getSpecifiedUnique();
		}
		return null;
	}
	
	@Override
	public String getColumnDefinition() {
		return this.column.getColumnDefinition();
	}
	
	public Integer getLength() {
		if (this.column.getSpecifiedLength() != null) {
			return this.column.getSpecifiedLength();
		}
		return null;
	}
	
	public void setLength(Integer length) {
		if (length != null) {
			createColumnResource().setLength(length);
		}
	}
	
	public Integer getScale() {
		if (this.column.getSpecifiedScale() != null) {
			return this.column.getSpecifiedScale();
		}
		return null;
	}
	
	public void setScale(Integer scale) {
		if (scale != null) {
			createColumnResource().setScale(scale);
		}
	}
	
	public Integer getPrecision() {
		if (this.column.getSpecifiedPrecision() != null) {
			return this.column.getSpecifiedPrecision();
		}
		return null;
	}
	
	public void setPrecision(Integer precision) {
		if (precision != null) {
			createColumnResource().setPrecision(precision);
		}
	}
	
	public TextRange getScaleTextRange(CompilationUnit astRoot) {
		return null;
	}
	
	public TextRange getLengthTextRange(CompilationUnit astRoot) {
		return null;
	}
	
	public TextRange getPrecisionTextRange(CompilationUnit astRoot) {
		return null;
	}
}

Back to the top