From 37832fee2211619acac82a73c079b8fa166d8a1b Mon Sep 17 00:00:00 2001 From: Mayank Chaudhary <chaudhary@fortiss.org> Date: Wed, 9 Mar 2016 13:45:17 +0000 Subject: [PATCH] compositor for raspberry platform elements added refs 2507 --- .../ui/compose/elements/BusCompositor.java | 47 +++++++++++++++++++ .../ui/compose/elements/CANBusCompositor.java | 47 +++++++++++++++++++ .../ui/compose/elements/CoreCompositor.java | 47 +++++++++++++++++++ .../elements/RaspberryPi1Compositor.java | 47 +++++++++++++++++++ .../elements/RaspberryPi2Compositor.java | 47 +++++++++++++++++++ .../elements/RaspberryPi3Compositor.java | 47 +++++++++++++++++++ 6 files changed, 282 insertions(+) create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/BusCompositor.java create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CANBusCompositor.java create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CoreCompositor.java create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi1Compositor.java create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi2Compositor.java create mode 100644 org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi3Compositor.java diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/BusCompositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/BusCompositor.java new file mode 100644 index 00000000..a3b52a4a --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/BusCompositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.compose.base.hierarchical.elements.TransmissionUnitComponentCompositorBase; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.Bus; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class BusCompositor extends TransmissionUnitComponentCompositorBase<Bus> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return Bus.class; + } + +} diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CANBusCompositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CANBusCompositor.java new file mode 100644 index 00000000..c861230a --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CANBusCompositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.compose.base.hierarchical.elements.TransmissionUnitComponentCompositorBase; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.CANBus; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class CANBusCompositor extends TransmissionUnitComponentCompositorBase<CANBus> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return CANBus.class; + } + +} diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CoreCompositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CoreCompositor.java new file mode 100644 index 00000000..91ed7e7b --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/CoreCompositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.compose.base.hierarchical.elements.ExecutionUnitComponentCompositorBase; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.Core; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class CoreCompositor extends ExecutionUnitComponentCompositorBase<Core> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return Core.class; + } + +} diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi1Compositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi1Compositor.java new file mode 100644 index 00000000..a26134a0 --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi1Compositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.RaspberryPi1; +import org.fortiss.af3.platform.raspberry.ui.compose.RaspberryPi1CompositorBase; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class RaspberryPi1Compositor extends RaspberryPi1CompositorBase<RaspberryPi1> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return RaspberryPi1.class; + } + +} diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi2Compositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi2Compositor.java new file mode 100644 index 00000000..db790331 --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi2Compositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.RaspberryPi2; +import org.fortiss.af3.platform.raspberry.ui.compose.RaspberryPi2CompositorBase; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class RaspberryPi2Compositor extends RaspberryPi2CompositorBase<RaspberryPi2> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return RaspberryPi2.class; + } + +} diff --git a/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi3Compositor.java b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi3Compositor.java new file mode 100644 index 00000000..ab215d50 --- /dev/null +++ b/org.fortiss.af3.platform.raspberry.ui/trunk/src/org/fortiss/af3/platform/raspberry/ui/compose/elements/RaspberryPi3Compositor.java @@ -0,0 +1,47 @@ +/*--------------------------------------------------------------------------+ +$Id$ +| | +| Copyright 2016 ForTISS GmbH | +| | +| Licensed 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.fortiss.af3.platform.raspberry.ui.compose.elements; + +import org.fortiss.af3.platform.compose.IPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.model.IArchitectureDomain; +import org.fortiss.af3.platform.raspberry.compositor.RaspberryPlatformHierarchicalCompositionRules; +import org.fortiss.af3.platform.raspberry.model.RaspberryPi3; +import org.fortiss.af3.platform.raspberry.ui.compose.RaspberryPi3CompositorBase; + +/** + * + * @author chaudhary + * @author $Author$ + * @version $Rev$ + * @ConQAT.Rating RED Hash: + */ +public class RaspberryPi3Compositor extends RaspberryPi3CompositorBase<RaspberryPi3> { + + /** {@inheritDoc} */ + @Override + public IPlatformHierarchicalCompositionRules getPlatformCompositionRules() { + return RaspberryPlatformHierarchicalCompositionRules.INSTANCE; + } + + /** {@inheritDoc} */ + @Override + protected Class<? extends IArchitectureDomain> getEditedObjectClass() { + return RaspberryPi3.class; + } + +} -- GitLab