Skip to content
Snippets Groups Projects
Commit 961fb018 authored by Johannes Eder's avatar Johannes Eder
Browse files

if timeout occurs while generating deployments/schedules a message is displayed

small fix -> schedule generation of manual deployments (yet not working correctly for shared memory architectures)
parent 0d7e511a
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ import org.fortiss.tooling.base.model.element.IModelElement;
* @version $Rev$
* @ConQAT.Rating RED Hash:
*/
public class AnnotationEntry {
final class AnnotationEntry {
/** Value not availabe */
public static final String NOVAL = "-";
......
......@@ -39,15 +39,15 @@ public interface IAnnotationValueProvider<T extends IAnnotatedSpecification> ext
public String getValue(T specification);
/**
* if this method does not return null, a combo box is provided with the specific return values
* If this method does not return null, a combo box is provided with the specific return values
*/
public List<String> getFixedValues();
/** sets a new value in the annotation and overrides the old one */
/** Sets a new value in the annotation and overrides the old one */
public void setValue(String value, T specification) throws IllegalArgumentException;
/**
* adds a new {@link IAnnotatedSpecification} of type T to the given model element and returns
* Adds a new {@link IAnnotatedSpecification} of type T to the given model element and returns
* it
*/
public T addNewSpecToModelElement(IModelElement element);
......@@ -55,7 +55,7 @@ public interface IAnnotationValueProvider<T extends IAnnotatedSpecification> ext
/** Returns the class of T */
public Class<T> getClazz();
/** Returns the disered name of the Annotaion */
/** Returns the desired name of the Annotation */
public String getAnnotationName();
/** Returns a List of Objects which children will not have {@link IAnnotatedSpecification}s */
......
<!--
$Id$
@version $Rev$
@ConQAT.Rating GREEN Hash: B08C82992D4CD064AC42B107A6C30254
-->
<body>
TODO
</body>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment