
org.openengsb.domain.OOSourceCode.model.OOVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openengsb.domain.OOSourceCode Show documentation
Show all versions of org.openengsb.domain.OOSourceCode Show documentation
Domain to demostrate the XLink Funktionality. Provides means to manage Modelclasses of different higher-programming Languages for a project.
The newest version!
/**
* Licensed to the Austrian Association for Software Tool Integration (AASTI)
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. The AASTI licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openengsb.domain.OOSourceCode.model;
import org.openengsb.core.api.Constants;
import org.openengsb.core.api.model.annotation.Model;
import org.openengsb.labs.delegation.service.Provide;
@Provide(context = { Constants.DELEGATION_CONTEXT_MODELS })
@Model
public class OOVariable {
private String name;
private String type;
private boolean isStatic;
private boolean isFinal;
public OOVariable() { }
public OOVariable(String name, String type, boolean isStatic, boolean isFinal) {
this.name = name;
this.type = type;
this.isStatic = isStatic;
this.isFinal = isFinal;
}
public boolean isIsFinal() {
return isFinal;
}
public void setIsFinal(boolean isFinal) {
this.isFinal = isFinal;
}
public boolean isIsStatic() {
return isStatic;
}
public void setIsStatic(boolean isStatic) {
this.isStatic = isStatic;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy