Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
ede4a139
Commit
ede4a139
authored
Aug 01, 2012
by
Florian Hölzl
Browse files
GREEN
refs 862
parent
c08bf42c
Changes
6
Hide whitespace changes
Inline
Side-by-side
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/properties/AreaInputPropertySection.java
View file @
ede4a139
...
...
@@ -49,7 +49,7 @@ import org.fortiss.tooling.kernel.ui.extension.base.PropertySectionBase;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating
YELLOW
Hash:
0428002DE49D17A26A5F6DB1EDA23443
* @ConQAT.Rating
GREEN
Hash:
3811E12860BEAAE18154A945D4E2C602
*/
public
class
AreaInputPropertySection
extends
PropertySectionBase
{
...
...
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/properties/ITermInputPropertySection.java
View file @
ede4a139
...
...
@@ -48,7 +48,7 @@ import org.fortiss.tooling.kernel.ui.extension.base.PropertySectionBase;
* @author doebber
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating
YELLOW
Hash:
E38AAC40BAD167EB8DBF86039268C115
* @ConQAT.Rating
GREEN
Hash:
20179FB01BE2D38BD392BA2FDD778644
*/
public
class
ITermInputPropertySection
extends
PropertySectionBase
{
...
...
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/properties/OPPushButtonPropertySection.java
View file @
ede4a139
...
...
@@ -17,6 +17,7 @@ $Id: codetemplates.xml 1 2011-01-01 00:00:01Z hoelzl $
+--------------------------------------------------------------------------*/
package
org.fortiss.af3.operatorpanel.ui.properties
;
import
static
org
.
fortiss
.
af3
.
operatorpanel
.
ui
.
utils
.
OPCompletionProposalUtils
.
createActionsProposals
;
import
static
org
.
fortiss
.
tooling
.
kernel
.
ui
.
util
.
DataBindingUtils
.
performComplexTextBinding
;
import
static
org
.
fortiss
.
tooling
.
kernel
.
ui
.
util
.
ObservableUtils
.
observeValue
;
import
static
org
.
fortiss
.
tooling
.
kernel
.
utils
.
LoggingUtils
.
error
;
...
...
@@ -32,7 +33,6 @@ import org.fortiss.af3.operatorpanel.model.AF3OperatorPanelPackage;
import
org.fortiss.af3.operatorpanel.model.OPButton
;
import
org.fortiss.af3.operatorpanel.model.OPPushButton
;
import
org.fortiss.af3.operatorpanel.ui.AF3OperatorpanelUIActivator
;
import
org.fortiss.af3.operatorpanel.ui.utils.OPCompletionProposalUtils
;
import
org.fortiss.tooling.base.ui.fieldassist.FieldAssist
;
import
org.fortiss.tooling.base.ui.fieldassist.ProposalProviderBase
;
...
...
@@ -42,7 +42,7 @@ import org.fortiss.tooling.base.ui.fieldassist.ProposalProviderBase;
* @author doebber
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating
YELLOW
Hash:
255FD3F8FD3C2050FBE5EF759179451
B
* @ConQAT.Rating
GREEN
Hash:
80F086314AA29B0D51BE4227D773F92
B
*/
public
class
OPPushButtonPropertySection
extends
InputOPItemPropertySection
{
...
...
@@ -80,7 +80,7 @@ public class OPPushButtonPropertySection extends InputOPItemPropertySection {
new
FieldAssist
(
onSelect
,
new
ProposalProviderBase
()
{
@Override
public
String
[]
getProposals
(
String
currentWord
)
{
return
OPCompletionProposalUtils
.
createActionsProposals
(
button
,
null
);
return
createActionsProposals
(
button
,
null
);
}
});
}
...
...
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/properties/OPToggleButtonPropertySection.java
View file @
ede4a139
...
...
@@ -17,6 +17,7 @@ $Id: codetemplates.xml 1 2011-01-01 00:00:01Z hoelzl $
+--------------------------------------------------------------------------*/
package
org.fortiss.af3.operatorpanel.ui.properties
;
import
static
org
.
fortiss
.
af3
.
operatorpanel
.
ui
.
utils
.
OPCompletionProposalUtils
.
createActionsProposals
;
import
static
org
.
fortiss
.
tooling
.
kernel
.
ui
.
util
.
DataBindingUtils
.
performComplexTextBinding
;
import
static
org
.
fortiss
.
tooling
.
kernel
.
ui
.
util
.
ObservableUtils
.
observeValue
;
...
...
@@ -29,7 +30,6 @@ import org.fortiss.af3.component.ui.behavior.StringToActionsConverter;
import
org.fortiss.af3.component.ui.behavior.StringToActionsValidator
;
import
org.fortiss.af3.operatorpanel.model.AF3OperatorPanelPackage
;
import
org.fortiss.af3.operatorpanel.model.OPToggleButton
;
import
org.fortiss.af3.operatorpanel.ui.utils.OPCompletionProposalUtils
;
import
org.fortiss.tooling.base.ui.fieldassist.FieldAssist
;
import
org.fortiss.tooling.base.ui.fieldassist.ProposalProviderBase
;
...
...
@@ -39,7 +39,7 @@ import org.fortiss.tooling.base.ui.fieldassist.ProposalProviderBase;
* @author doebber
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating
YELLOW
Hash:
2601FA1015D8BBC1758C901BB42B0882
* @ConQAT.Rating
GREEN
Hash:
46C1C54DDF409F910C88F67481D06F0D
*/
public
class
OPToggleButtonPropertySection
extends
OPPushButtonPropertySection
{
...
...
@@ -60,7 +60,7 @@ public class OPToggleButtonPropertySection extends OPPushButtonPropertySection {
new
FieldAssist
(
onDeselect
,
new
ProposalProviderBase
()
{
@Override
public
String
[]
getProposals
(
String
currentWord
)
{
return
OPCompletionProposalUtils
.
createActionsProposals
(
button
,
null
);
return
createActionsProposals
(
button
,
null
);
}
});
}
...
...
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/properties/TextReactionsPropertySection.java
View file @
ede4a139
...
...
@@ -39,7 +39,7 @@ import org.fortiss.af3.operatorpanel.model.OPTextReaction;
* @author doebber
* @author $Author: hoelzlf $
* @version $Rev: 5260 $
* @ConQAT.Rating
YELLOW
Hash:
4D005AB4D2779037149B8B256B561704
* @ConQAT.Rating
GREEN
Hash:
6685BC895AD004F89237C63DC7F20D6C
*/
public
class
TextReactionsPropertySection
extends
ListPropertySectionBase
<
OPTextReaction
>
{
...
...
@@ -69,5 +69,4 @@ public class TextReactionsPropertySection extends ListPropertySectionBase<OPText
protected
EList
<
OPTextReaction
>
getList
(
EObject
eo
)
{
return
((
OPTextDisplay
)
eo
).
getReactionsList
();
}
}
org.fortiss.af3.operatorpanel.ui/trunk/src/org/fortiss/af3/operatorpanel/ui/utils/OPCompletionProposalUtils.java
View file @
ede4a139
...
...
@@ -36,7 +36,7 @@ import org.fortiss.af3.operatorpanel.model.OperatorPanelItem;
* @author doebber
* @author $Author$
* @version $Rev$
* @ConQAT.Rating
YELLOW
Hash:
46B70051A76748DE59A9325E961276F5
* @ConQAT.Rating
GREEN
Hash:
A8C9141D16B3AD73AD93B1E96BC9A0CD
*/
public
class
OPCompletionProposalUtils
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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