Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
NeqModPlus
Building Physics
Building Physics Catalog Editor
Commits
56780a88
Commit
56780a88
authored
4 years ago
by
Kai-Holger Brassel
Browse files
Options
Download
Email Patches
Plain Diff
Project setup
parent
4d9f0230
Changes
50
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
+7
-0
...gart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
+29
-0
...gart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/CatalogImpl.java
+6
-0
...src/de/hftstuttgart/buildingphysics/impl/CatalogImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCatalogImpl.java
+1
-0
...ftstuttgart/buildingphysics/impl/MaterialCatalogImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
+3
-0
...tstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
+10
-0
...rc/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/WindowCatalogImpl.java
+1
-0
.../hftstuttgart/buildingphysics/impl/WindowCatalogImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/WindowTypeImpl.java
+24
-0
.../de/hftstuttgart/buildingphysics/impl/WindowTypeImpl.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
+0
-0
...t/buildingphysics/util/BuildingPhysicsAdapterFactory.java
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
+0
-0
...stuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
with
81 additions
and
0 deletions
+81
-0
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
+
7
-
0
View file @
56780a88
...
@@ -78,6 +78,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -78,6 +78,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
BuildingPhysicsCatalog
createBuildingPhysicsCatalog
()
{
public
BuildingPhysicsCatalog
createBuildingPhysicsCatalog
()
{
BuildingPhysicsCatalogImpl
buildingPhysicsCatalog
=
new
BuildingPhysicsCatalogImpl
();
BuildingPhysicsCatalogImpl
buildingPhysicsCatalog
=
new
BuildingPhysicsCatalogImpl
();
return
buildingPhysicsCatalog
;
return
buildingPhysicsCatalog
;
...
@@ -88,6 +89,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -88,6 +89,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
WindowType
createWindowType
()
{
public
WindowType
createWindowType
()
{
WindowTypeImpl
windowType
=
new
WindowTypeImpl
();
WindowTypeImpl
windowType
=
new
WindowTypeImpl
();
return
windowType
;
return
windowType
;
...
@@ -98,6 +100,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -98,6 +100,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
WindowCatalog
createWindowCatalog
()
{
public
WindowCatalog
createWindowCatalog
()
{
WindowCatalogImpl
windowCatalog
=
new
WindowCatalogImpl
();
WindowCatalogImpl
windowCatalog
=
new
WindowCatalogImpl
();
return
windowCatalog
;
return
windowCatalog
;
...
@@ -108,6 +111,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -108,6 +111,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
MaterialCatalog
createMaterialCatalog
()
{
public
MaterialCatalog
createMaterialCatalog
()
{
MaterialCatalogImpl
materialCatalog
=
new
MaterialCatalogImpl
();
MaterialCatalogImpl
materialCatalog
=
new
MaterialCatalogImpl
();
return
materialCatalog
;
return
materialCatalog
;
...
@@ -118,6 +122,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -118,6 +122,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
MaterialCategory
createMaterialCategory
()
{
public
MaterialCategory
createMaterialCategory
()
{
MaterialCategoryImpl
materialCategory
=
new
MaterialCategoryImpl
();
MaterialCategoryImpl
materialCategory
=
new
MaterialCategoryImpl
();
return
materialCategory
;
return
materialCategory
;
...
@@ -128,6 +133,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -128,6 +133,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
Material
createMaterial
()
{
public
Material
createMaterial
()
{
MaterialImpl
material
=
new
MaterialImpl
();
MaterialImpl
material
=
new
MaterialImpl
();
return
material
;
return
material
;
...
@@ -138,6 +144,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
...
@@ -138,6 +144,7 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
BuildingPhysicsPackage
getBuildingPhysicsPackage
()
{
public
BuildingPhysicsPackage
getBuildingPhysicsPackage
()
{
return
(
BuildingPhysicsPackage
)
getEPackage
();
return
(
BuildingPhysicsPackage
)
getEPackage
();
}
}
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
+
29
-
0
View file @
56780a88
...
@@ -144,6 +144,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -144,6 +144,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getBuildingPhysicsCatalog
()
{
public
EClass
getBuildingPhysicsCatalog
()
{
return
buildingPhysicsCatalogEClass
;
return
buildingPhysicsCatalogEClass
;
}
}
...
@@ -153,6 +154,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -153,6 +154,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getBuildingPhysicsCatalog_Author
()
{
public
EAttribute
getBuildingPhysicsCatalog_Author
()
{
return
(
EAttribute
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EAttribute
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -162,6 +164,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -162,6 +164,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EReference
getBuildingPhysicsCatalog_WindowCatalog
()
{
public
EReference
getBuildingPhysicsCatalog_WindowCatalog
()
{
return
(
EReference
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
1
);
return
(
EReference
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
1
);
}
}
...
@@ -171,6 +174,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -171,6 +174,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EReference
getBuildingPhysicsCatalog_MaterialCatalog
()
{
public
EReference
getBuildingPhysicsCatalog_MaterialCatalog
()
{
return
(
EReference
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
2
);
return
(
EReference
)
buildingPhysicsCatalogEClass
.
getEStructuralFeatures
().
get
(
2
);
}
}
...
@@ -180,6 +184,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -180,6 +184,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getWindowType
()
{
public
EClass
getWindowType
()
{
return
windowTypeEClass
;
return
windowTypeEClass
;
}
}
...
@@ -189,6 +194,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -189,6 +194,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_Id
()
{
public
EAttribute
getWindowType_Id
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -198,6 +204,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -198,6 +204,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_Name
()
{
public
EAttribute
getWindowType_Name
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
1
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
1
);
}
}
...
@@ -207,6 +214,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -207,6 +214,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_UValue
()
{
public
EAttribute
getWindowType_UValue
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
2
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
2
);
}
}
...
@@ -216,6 +224,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -216,6 +224,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_GValue
()
{
public
EAttribute
getWindowType_GValue
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
3
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
3
);
}
}
...
@@ -225,6 +234,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -225,6 +234,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_GlazingNumber
()
{
public
EAttribute
getWindowType_GlazingNumber
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
4
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
4
);
}
}
...
@@ -234,6 +244,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -234,6 +244,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getWindowType_FrameRatio
()
{
public
EAttribute
getWindowType_FrameRatio
()
{
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
5
);
return
(
EAttribute
)
windowTypeEClass
.
getEStructuralFeatures
().
get
(
5
);
}
}
...
@@ -243,6 +254,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -243,6 +254,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getCatalog
()
{
public
EClass
getCatalog
()
{
return
catalogEClass
;
return
catalogEClass
;
}
}
...
@@ -252,6 +264,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -252,6 +264,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getCatalog_Name
()
{
public
EAttribute
getCatalog_Name
()
{
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -261,6 +274,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -261,6 +274,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getCatalog_Description
()
{
public
EAttribute
getCatalog_Description
()
{
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
1
);
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
1
);
}
}
...
@@ -270,6 +284,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -270,6 +284,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getCatalog_Source
()
{
public
EAttribute
getCatalog_Source
()
{
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
2
);
return
(
EAttribute
)
catalogEClass
.
getEStructuralFeatures
().
get
(
2
);
}
}
...
@@ -279,6 +294,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -279,6 +294,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getWindowCatalog
()
{
public
EClass
getWindowCatalog
()
{
return
windowCatalogEClass
;
return
windowCatalogEClass
;
}
}
...
@@ -288,6 +304,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -288,6 +304,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EReference
getWindowCatalog_WindowTypes
()
{
public
EReference
getWindowCatalog_WindowTypes
()
{
return
(
EReference
)
windowCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EReference
)
windowCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -297,6 +314,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -297,6 +314,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getMaterialCatalog
()
{
public
EClass
getMaterialCatalog
()
{
return
materialCatalogEClass
;
return
materialCatalogEClass
;
}
}
...
@@ -306,6 +324,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -306,6 +324,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EReference
getMaterialCatalog_MaterialCategories
()
{
public
EReference
getMaterialCatalog_MaterialCategories
()
{
return
(
EReference
)
materialCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EReference
)
materialCatalogEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -315,6 +334,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -315,6 +334,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getMaterialCategory
()
{
public
EClass
getMaterialCategory
()
{
return
materialCategoryEClass
;
return
materialCategoryEClass
;
}
}
...
@@ -324,6 +344,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -324,6 +344,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EReference
getMaterialCategory_Material
()
{
public
EReference
getMaterialCategory_Material
()
{
return
(
EReference
)
materialCategoryEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EReference
)
materialCategoryEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -333,6 +354,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -333,6 +354,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterialCategory_Name
()
{
public
EAttribute
getMaterialCategory_Name
()
{
return
(
EAttribute
)
materialCategoryEClass
.
getEStructuralFeatures
().
get
(
1
);
return
(
EAttribute
)
materialCategoryEClass
.
getEStructuralFeatures
().
get
(
1
);
}
}
...
@@ -342,6 +364,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -342,6 +364,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EClass
getMaterial
()
{
public
EClass
getMaterial
()
{
return
materialEClass
;
return
materialEClass
;
}
}
...
@@ -351,6 +374,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -351,6 +374,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterial_Id
()
{
public
EAttribute
getMaterial_Id
()
{
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
0
);
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
0
);
}
}
...
@@ -360,6 +384,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -360,6 +384,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterial_Name
()
{
public
EAttribute
getMaterial_Name
()
{
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
1
);
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
1
);
}
}
...
@@ -369,6 +394,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -369,6 +394,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterial_Density
()
{
public
EAttribute
getMaterial_Density
()
{
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
2
);
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
2
);
}
}
...
@@ -378,6 +404,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -378,6 +404,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterial_HeatCapacity
()
{
public
EAttribute
getMaterial_HeatCapacity
()
{
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
3
);
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
3
);
}
}
...
@@ -387,6 +414,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -387,6 +414,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EAttribute
getMaterial_Conductivity
()
{
public
EAttribute
getMaterial_Conductivity
()
{
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
4
);
return
(
EAttribute
)
materialEClass
.
getEStructuralFeatures
().
get
(
4
);
}
}
...
@@ -396,6 +424,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
...
@@ -396,6 +424,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
BuildingPhysicsFactory
getBuildingPhysicsFactory
()
{
public
BuildingPhysicsFactory
getBuildingPhysicsFactory
()
{
return
(
BuildingPhysicsFactory
)
getEFactoryInstance
();
return
(
BuildingPhysicsFactory
)
getEFactoryInstance
();
}
}
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/CatalogImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/CatalogImpl.java
+
6
-
0
View file @
56780a88
...
@@ -112,6 +112,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -112,6 +112,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
}
}
...
@@ -121,6 +122,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -121,6 +122,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setName
(
String
newName
)
{
public
void
setName
(
String
newName
)
{
String
oldName
=
name
;
String
oldName
=
name
;
name
=
newName
;
name
=
newName
;
...
@@ -133,6 +135,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -133,6 +135,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getDescription
()
{
public
String
getDescription
()
{
return
description
;
return
description
;
}
}
...
@@ -142,6 +145,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -142,6 +145,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setDescription
(
String
newDescription
)
{
public
void
setDescription
(
String
newDescription
)
{
String
oldDescription
=
description
;
String
oldDescription
=
description
;
description
=
newDescription
;
description
=
newDescription
;
...
@@ -155,6 +159,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -155,6 +159,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getSource
()
{
public
String
getSource
()
{
return
source
;
return
source
;
}
}
...
@@ -164,6 +169,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
...
@@ -164,6 +169,7 @@ public abstract class CatalogImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setSource
(
String
newSource
)
{
public
void
setSource
(
String
newSource
)
{
String
oldSource
=
source
;
String
oldSource
=
source
;
source
=
newSource
;
source
=
newSource
;
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/MaterialCatalogImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCatalogImpl.java
+
1
-
0
View file @
56780a88
...
@@ -66,6 +66,7 @@ public class MaterialCatalogImpl extends CatalogImpl implements MaterialCatalog
...
@@ -66,6 +66,7 @@ public class MaterialCatalogImpl extends CatalogImpl implements MaterialCatalog
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EList
<
MaterialCategory
>
getMaterialCategories
()
{
public
EList
<
MaterialCategory
>
getMaterialCategories
()
{
if
(
materialCategories
==
null
)
{
if
(
materialCategories
==
null
)
{
materialCategories
=
new
EObjectContainmentEList
<
MaterialCategory
>(
MaterialCategory
.
class
,
this
,
materialCategories
=
new
EObjectContainmentEList
<
MaterialCategory
>(
MaterialCategory
.
class
,
this
,
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
+
3
-
0
View file @
56780a88
...
@@ -91,6 +91,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
...
@@ -91,6 +91,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EList
<
Material
>
getMaterial
()
{
public
EList
<
Material
>
getMaterial
()
{
if
(
material
==
null
)
{
if
(
material
==
null
)
{
material
=
new
EObjectContainmentEList
<
Material
>(
Material
.
class
,
this
,
material
=
new
EObjectContainmentEList
<
Material
>(
Material
.
class
,
this
,
...
@@ -104,6 +105,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
...
@@ -104,6 +105,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
}
}
...
@@ -113,6 +115,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
...
@@ -113,6 +115,7 @@ public class MaterialCategoryImpl extends MinimalEObjectImpl.Container implement
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setName
(
String
newName
)
{
public
void
setName
(
String
newName
)
{
String
oldName
=
name
;
String
oldName
=
name
;
name
=
newName
;
name
=
newName
;
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
+
10
-
0
View file @
56780a88
...
@@ -154,6 +154,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -154,6 +154,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
int
getId
()
{
public
int
getId
()
{
return
id
;
return
id
;
}
}
...
@@ -163,6 +164,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -163,6 +164,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setId
(
int
newId
)
{
public
void
setId
(
int
newId
)
{
int
oldId
=
id
;
int
oldId
=
id
;
id
=
newId
;
id
=
newId
;
...
@@ -175,6 +177,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -175,6 +177,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
}
}
...
@@ -184,6 +187,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -184,6 +187,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setName
(
String
newName
)
{
public
void
setName
(
String
newName
)
{
String
oldName
=
name
;
String
oldName
=
name
;
name
=
newName
;
name
=
newName
;
...
@@ -197,6 +201,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -197,6 +201,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
double
getDensity
()
{
public
double
getDensity
()
{
return
density
;
return
density
;
}
}
...
@@ -206,6 +211,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -206,6 +211,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setDensity
(
double
newDensity
)
{
public
void
setDensity
(
double
newDensity
)
{
double
oldDensity
=
density
;
double
oldDensity
=
density
;
density
=
newDensity
;
density
=
newDensity
;
...
@@ -219,6 +225,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -219,6 +225,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
double
getHeatCapacity
()
{
public
double
getHeatCapacity
()
{
return
heatCapacity
;
return
heatCapacity
;
}
}
...
@@ -228,6 +235,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -228,6 +235,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setHeatCapacity
(
double
newHeatCapacity
)
{
public
void
setHeatCapacity
(
double
newHeatCapacity
)
{
double
oldHeatCapacity
=
heatCapacity
;
double
oldHeatCapacity
=
heatCapacity
;
heatCapacity
=
newHeatCapacity
;
heatCapacity
=
newHeatCapacity
;
...
@@ -241,6 +249,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -241,6 +249,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
double
getConductivity
()
{
public
double
getConductivity
()
{
return
conductivity
;
return
conductivity
;
}
}
...
@@ -250,6 +259,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
...
@@ -250,6 +259,7 @@ public class MaterialImpl extends MinimalEObjectImpl.Container implements Materi
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setConductivity
(
double
newConductivity
)
{
public
void
setConductivity
(
double
newConductivity
)
{
double
oldConductivity
=
conductivity
;
double
oldConductivity
=
conductivity
;
conductivity
=
newConductivity
;
conductivity
=
newConductivity
;
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/WindowCatalogImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/WindowCatalogImpl.java
+
1
-
0
View file @
56780a88
...
@@ -66,6 +66,7 @@ public class WindowCatalogImpl extends CatalogImpl implements WindowCatalog {
...
@@ -66,6 +66,7 @@ public class WindowCatalogImpl extends CatalogImpl implements WindowCatalog {
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
EList
<
WindowType
>
getWindowTypes
()
{
public
EList
<
WindowType
>
getWindowTypes
()
{
if
(
windowTypes
==
null
)
{
if
(
windowTypes
==
null
)
{
windowTypes
=
new
EObjectContainmentEList
<
WindowType
>(
WindowType
.
class
,
this
,
windowTypes
=
new
EObjectContainmentEList
<
WindowType
>(
WindowType
.
class
,
this
,
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/impl/WindowTypeImpl.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/WindowTypeImpl.java
+
24
-
0
View file @
56780a88
...
@@ -6,6 +6,7 @@ import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
...
@@ -6,6 +6,7 @@ import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
import
de.hftstuttgart.buildingphysics.WindowType
;
import
de.hftstuttgart.buildingphysics.WindowType
;
import
org.eclipse.emf.common.notify.Notification
;
import
org.eclipse.emf.common.notify.Notification
;
import
org.eclipse.emf.ecore.EClass
;
import
org.eclipse.emf.ecore.EClass
;
import
org.eclipse.emf.ecore.impl.ENotificationImpl
;
import
org.eclipse.emf.ecore.impl.ENotificationImpl
;
...
@@ -39,6 +40,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -39,6 +40,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
int
ID_EDEFAULT
=
0
;
protected
static
final
int
ID_EDEFAULT
=
0
;
/**
/**
* The cached value of the '{@link #getId() <em>Id</em>}' attribute.
* The cached value of the '{@link #getId() <em>Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -48,6 +50,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -48,6 +50,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
int
id
=
ID_EDEFAULT
;
protected
int
id
=
ID_EDEFAULT
;
/**
/**
* The default value of the '{@link #getName() <em>Name</em>}' attribute.
* The default value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -57,6 +60,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -57,6 +60,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
String
NAME_EDEFAULT
=
null
;
protected
static
final
String
NAME_EDEFAULT
=
null
;
/**
/**
* The cached value of the '{@link #getName() <em>Name</em>}' attribute.
* The cached value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -66,6 +70,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -66,6 +70,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
String
name
=
NAME_EDEFAULT
;
protected
String
name
=
NAME_EDEFAULT
;
/**
/**
* The default value of the '{@link #getUValue() <em>UValue</em>}' attribute.
* The default value of the '{@link #getUValue() <em>UValue</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -75,6 +80,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -75,6 +80,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
double
UVALUE_EDEFAULT
=
0.0
;
protected
static
final
double
UVALUE_EDEFAULT
=
0.0
;
/**
/**
* The cached value of the '{@link #getUValue() <em>UValue</em>}' attribute.
* The cached value of the '{@link #getUValue() <em>UValue</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -84,6 +90,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -84,6 +90,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
double
uValue
=
UVALUE_EDEFAULT
;
protected
double
uValue
=
UVALUE_EDEFAULT
;
/**
/**
* The default value of the '{@link #getGValue() <em>GValue</em>}' attribute.
* The default value of the '{@link #getGValue() <em>GValue</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -93,6 +100,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -93,6 +100,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
double
GVALUE_EDEFAULT
=
0.0
;
protected
static
final
double
GVALUE_EDEFAULT
=
0.0
;
/**
/**
* The cached value of the '{@link #getGValue() <em>GValue</em>}' attribute.
* The cached value of the '{@link #getGValue() <em>GValue</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -102,6 +110,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -102,6 +110,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
double
gValue
=
GVALUE_EDEFAULT
;
protected
double
gValue
=
GVALUE_EDEFAULT
;
/**
/**
* The default value of the '{@link #getGlazingNumber() <em>Glazing Number</em>}' attribute.
* The default value of the '{@link #getGlazingNumber() <em>Glazing Number</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -111,6 +120,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -111,6 +120,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
int
GLAZING_NUMBER_EDEFAULT
=
0
;
protected
static
final
int
GLAZING_NUMBER_EDEFAULT
=
0
;
/**
/**
* The cached value of the '{@link #getGlazingNumber() <em>Glazing Number</em>}' attribute.
* The cached value of the '{@link #getGlazingNumber() <em>Glazing Number</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -120,6 +130,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -120,6 +130,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
int
glazingNumber
=
GLAZING_NUMBER_EDEFAULT
;
protected
int
glazingNumber
=
GLAZING_NUMBER_EDEFAULT
;
/**
/**
* The default value of the '{@link #getFrameRatio() <em>Frame Ratio</em>}' attribute.
* The default value of the '{@link #getFrameRatio() <em>Frame Ratio</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -129,6 +140,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -129,6 +140,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* @ordered
* @ordered
*/
*/
protected
static
final
int
FRAME_RATIO_EDEFAULT
=
0
;
protected
static
final
int
FRAME_RATIO_EDEFAULT
=
0
;
/**
/**
* The cached value of the '{@link #getFrameRatio() <em>Frame Ratio</em>}' attribute.
* The cached value of the '{@link #getFrameRatio() <em>Frame Ratio</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- begin-user-doc -->
...
@@ -163,6 +175,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -163,6 +175,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
int
getId
()
{
public
int
getId
()
{
return
id
;
return
id
;
}
}
...
@@ -172,6 +185,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -172,6 +185,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setId
(
int
newId
)
{
public
void
setId
(
int
newId
)
{
int
oldId
=
id
;
int
oldId
=
id
;
id
=
newId
;
id
=
newId
;
...
@@ -184,6 +198,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -184,6 +198,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
String
getName
()
{
public
String
getName
()
{
return
name
;
return
name
;
}
}
...
@@ -193,6 +208,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -193,6 +208,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setName
(
String
newName
)
{
public
void
setName
(
String
newName
)
{
String
oldName
=
name
;
String
oldName
=
name
;
name
=
newName
;
name
=
newName
;
...
@@ -206,6 +222,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -206,6 +222,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
double
getUValue
()
{
public
double
getUValue
()
{
return
uValue
;
return
uValue
;
}
}
...
@@ -215,6 +232,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -215,6 +232,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setUValue
(
double
newUValue
)
{
public
void
setUValue
(
double
newUValue
)
{
double
oldUValue
=
uValue
;
double
oldUValue
=
uValue
;
uValue
=
newUValue
;
uValue
=
newUValue
;
...
@@ -228,6 +246,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -228,6 +246,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
double
getGValue
()
{
public
double
getGValue
()
{
return
gValue
;
return
gValue
;
}
}
...
@@ -237,6 +256,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -237,6 +256,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setGValue
(
double
newGValue
)
{
public
void
setGValue
(
double
newGValue
)
{
double
oldGValue
=
gValue
;
double
oldGValue
=
gValue
;
gValue
=
newGValue
;
gValue
=
newGValue
;
...
@@ -250,6 +270,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -250,6 +270,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
int
getGlazingNumber
()
{
public
int
getGlazingNumber
()
{
return
glazingNumber
;
return
glazingNumber
;
}
}
...
@@ -259,6 +280,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -259,6 +280,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setGlazingNumber
(
int
newGlazingNumber
)
{
public
void
setGlazingNumber
(
int
newGlazingNumber
)
{
int
oldGlazingNumber
=
glazingNumber
;
int
oldGlazingNumber
=
glazingNumber
;
glazingNumber
=
newGlazingNumber
;
glazingNumber
=
newGlazingNumber
;
...
@@ -272,6 +294,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -272,6 +294,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
int
getFrameRatio
()
{
public
int
getFrameRatio
()
{
return
frameRatio
;
return
frameRatio
;
}
}
...
@@ -281,6 +304,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
...
@@ -281,6 +304,7 @@ public class WindowTypeImpl extends MinimalEObjectImpl.Container implements Wind
* <!-- end-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated
*/
*/
@Override
public
void
setFrameRatio
(
int
newFrameRatio
)
{
public
void
setFrameRatio
(
int
newFrameRatio
)
{
int
oldFrameRatio
=
frameRatio
;
int
oldFrameRatio
=
frameRatio
;
frameRatio
=
newFrameRatio
;
frameRatio
=
newFrameRatio
;
...
...
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
+
0
-
0
View file @
56780a88
File moved
This diff is collapsed.
Click to expand it.
de.hftstuttgart.buildingphysics/src
-gen
/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
→
de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
+
0
-
0
View file @
56780a88
File moved
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment