use of org.obeonetwork.dsl.typeslibrary.NativeType in project InformationSystem by ObeoNetwork.
the class ColumnServicesTest method testColumnLengthENUM.
@Test
public void testColumnLengthENUM() {
Column col = (Column) EcoreUtil.create(DatabasePackage.Literals.COLUMN);
TypeInstance type = (TypeInstance) EcoreUtil.create(TypesLibraryPackage.Literals.TYPE_INSTANCE);
NativeType nType = (NativeType) EcoreUtil.create(TypesLibraryPackage.Literals.NATIVE_TYPE);
col.setType(type);
type.setNativeType(nType);
nType.setSpec(NativeTypeKind.ENUM);
assertEquals("", new ColumnServices().typeLength(col));
}
use of org.obeonetwork.dsl.typeslibrary.NativeType in project InformationSystem by ObeoNetwork.
the class NativeTypesLibraryPropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final NativeTypesLibrary nativeTypesLibrary = (NativeTypesLibrary) elt;
final NativeTypesLibraryPropertiesEditionPart nativeTypesLibraryPart = (NativeTypesLibraryPropertiesEditionPart) editingPart;
// init values
if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.name))
nativeTypesLibraryPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, nativeTypesLibrary.getName()));
if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.nativeTypes)) {
nativeTypesSettings = new ReferencesTableSettings(nativeTypesLibrary, TypesLibraryPackage.eINSTANCE.getNativeTypesLibrary_NativeTypes());
nativeTypesLibraryPart.initNativeTypes(nativeTypesSettings);
}
if (isAccessible(TypeslibraryViewsRepository.NativeTypesLibrary.Properties.nativeTypes)) {
nativeTypesLibraryPart.addFilterToNativeTypes(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof NativeType);
}
});
// Start of user code for additional businessfilters for nativeTypes
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
use of org.obeonetwork.dsl.typeslibrary.NativeType in project InformationSystem by ObeoNetwork.
the class TypeInstancePropertiesEditionComponent method updateSemanticModel.
/**
* {@inheritDoc}
* @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent)
*/
public void updateSemanticModel(final IPropertiesEditionEvent event) {
TypeInstance typeInstance = (TypeInstance) semanticObject;
if (TypeslibraryViewsRepository.TypeInstance.Properties.type == event.getAffectedEditor()) {
typeInstance.setNativeType(!"".equals(event.getNewValue()) ? (NativeType) event.getNewValue() : null);
}
if (TypeslibraryViewsRepository.TypeInstance.Properties.TypeAttributes.length == event.getAffectedEditor()) {
typeInstance.setLength((java.lang.Integer) EEFConverterUtil.createFromString(EcorePackage.Literals.EINTEGER_OBJECT, (String) event.getNewValue()));
}
if (TypeslibraryViewsRepository.TypeInstance.Properties.TypeAttributes.precision == event.getAffectedEditor()) {
typeInstance.setPrecision((java.lang.Integer) EEFConverterUtil.createFromString(EcorePackage.Literals.EINTEGER_OBJECT, (String) event.getNewValue()));
}
if (TypeslibraryViewsRepository.TypeInstance.Properties.literals == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.SET) {
typeInstance.getLiterals().clear();
typeInstance.getLiterals().addAll(((EList) event.getNewValue()));
}
}
}
use of org.obeonetwork.dsl.typeslibrary.NativeType in project InformationSystem by ObeoNetwork.
the class NativeTypePropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final NativeType nativeType = (NativeType) elt;
final NativeTypePropertiesEditionPart nativeTypePart = (NativeTypePropertiesEditionPart) editingPart;
// init values
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.name))
nativeTypePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, nativeType.getName()));
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.spec)) {
nativeTypePart.initSpec(EEFUtils.choiceOfValues(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_Spec()), nativeType.getSpec());
}
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
// init part
mapsToSettings = new EObjectFlatComboSettings(nativeType, TypesLibraryPackage.eINSTANCE.getNativeType_MapsTo());
nativeTypePart.initMapsTo(mapsToSettings);
// set the button mode
nativeTypePart.setMapsToButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(TypeslibraryViewsRepository.NativeType.Properties.mapsTo)) {
nativeTypePart.addFilterToMapsTo(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof NativeType);
}
});
// Start of user code for additional businessfilters for mapsTo
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
use of org.obeonetwork.dsl.typeslibrary.NativeType in project InformationSystem by ObeoNetwork.
the class ColumnServicesTest method testColumnLengthLENGTH.
@Test
public void testColumnLengthLENGTH() {
Column col = (Column) EcoreUtil.create(DatabasePackage.Literals.COLUMN);
TypeInstance type = (TypeInstance) EcoreUtil.create(TypesLibraryPackage.Literals.TYPE_INSTANCE);
NativeType nType = (NativeType) EcoreUtil.create(TypesLibraryPackage.Literals.NATIVE_TYPE);
col.setType(type);
type.setNativeType(nType);
nType.setSpec(NativeTypeKind.LENGTH);
type.setLength(255);
assertEquals("255", new ColumnServices().typeLength(col));
}
Aggregations