/trunk/seg.jUCMNav Developers: byrney

Login name:
byrney
Total Commits:
61 (0.4%)
Lines of Code:
4,165 (0.4%)
Most Recent Commit:
2008-03-24 18:10
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for byrney

Activity by Day of Week for byrney

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 61 (100.0%) 4165 (100.0%) 68.2
src/seg/jUCMNav/staticSemantic/ 29 (47.5%) 1641 (39.4%) 56.5
src/seg/jUCMNav/views/preferences/staticSemantic/ 12 (19.7%) 1480 (35.5%) 123.3
src/seg/jUCMNav/views/preferences/ 13 (21.3%) 921 (22.1%) 70.8
src/seg/jUCMNav/actions/staticSemantic/ 3 (4.9%) 102 (2.4%) 34.0
/ 3 (4.9%) 18 (0.4%) 6.0
META-INF/ 1 (1.6%) 3 (0.1%) 3.0

Activity of byrney

Most Recent Commits

byrney 2008-03-24 18:10 Rev.: 1423

Adding "->asSequence()" internally on the fly to ensure the return object by evaluating rule context expression is a type of Java List.

1 lines of code changed in 1 file:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticChecker.java (+1 -1)
byrney 2008-03-24 16:34 Rev.: 1422

Removing two buttons and renaming the buttons to "Add to group" and "Remove from group"

5 lines of code changed in 1 file:

  • src/seg/jUCMNav/views/preferences/staticSemantic: GroupEditDialog.java (+5 -39)
byrney 2008-03-24 16:33 Rev.: 1421

Fix bug: utilities are not saved when editing a rule

4 lines of code changed in 1 file:

  • src/seg/jUCMNav/views/preferences/staticSemantic: RuleEditDialog.java (+4)
byrney 2008-03-24 16:32 Rev.: 1420

Fix bug: rules are not loaded if the preference page is not opened

1 lines of code changed in 1 file:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticDefMgr.java (+1)
byrney 2008-03-13 19:39 Rev.: 1419

Fix Bug: don't remove the rule reference from groups when a rule is deleted

6 lines of code changed in 1 file:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticDefMgr.java (+6)
byrney 2008-03-13 16:06 Rev.: 1418

Fix Bug: fail to enable a rule by selecting the rule rather than a group

8 lines of code changed in 1 file:

  • src/seg/jUCMNav/views/preferences/staticSemantic: StaticSemanticPreferencePage.java (+8 -10)
byrney 2008-03-13 16:05 Rev.: 1417

Fix Bug: save invaraint expression inproperly

1 lines of code changed in 1 file:

  • src/seg/jUCMNav/views/preferences/staticSemantic: RuleEditDialog.java (+1 -1)
byrney 2008-03-03 15:24 Rev.: 1416

Add Javadoc comments on each class and each method.

633 lines of code changed in 10 files:

  • src/seg/jUCMNav/actions/staticSemantic: VerifyStaticSemanticDelegate.java (+16 -1)
  • src/seg/jUCMNav/staticSemantic: Rule.java (+118 -5), RuleGroup.java (+56 -2), StaticCheckingMsg.java (+31 -4), StaticSemanticChecker.java (+20 -1), StaticSemanticDefMgr.java (+143 -8)
  • src/seg/jUCMNav/views/preferences/staticSemantic: GroupEditDialog.java (+60 -7), RuleEditDialog.java (+75 -8), RuleUtilityEditDialog.java (+30 -5), StaticSemanticPreferencePage.java (+84 -85)
byrney 2008-02-12 19:59

Added a feature of grouping rules

1573 lines of code changed in 13 files:

  • plugin.xml (+1 -1)
  • src/seg/jUCMNav/staticSemantic: Rule.java (+6 -3), RuleGroup.java (new 64), StaticSemanticChecker.java (+4 -4), StaticSemanticDefMgr.java (+272 -56), ruleschema.xsd (+13 -12)
  • src/seg/jUCMNav/views/preferences: RuleEditDialog.java (del), RuleUtilityEditDialog.java (del), StaticSemanticPreferencePage.java (del)
  • src/seg/jUCMNav/views/preferences/staticSemantic: GroupEditDialog.java (new 261), RuleEditDialog.java (new 323), RuleUtilityEditDialog.java (new 65), StaticSemanticPreferencePage.java (new 564)
byrney 2008-02-10 16:06 Rev.: 1404

Make the rule table resize itself when the dialog is resized.

37 lines of code changed in 4 files:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticChecker.java (+1 -1)
  • src/seg/jUCMNav/views/preferences: RuleEditDialog.java (+27 -15), RuleUtilityEditDialog.java (+7 -1), StaticSemanticPreferencePage.java (+2 -1)
byrney 2008-02-04 14:39 Rev.: 1401

Fix the bug: the methof isEmpty() is not available in Java 1.4

1 lines of code changed in 1 file:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticDefMgr.java (+1 -1)
byrney 2008-02-04 11:57 Rev.: 1400

1. enable to select more one rule to export or delete
2. Giving a warning when importing a rule with a name which is as same as the name of one rule in the system.
3. Show rule description when reporting a checking rule violation
4. Move default rule definitions into a file
5. provide some standard library utilities

249 lines of code changed in 6 files:

  • src/seg/jUCMNav/staticSemantic: Rule.java (+8), StaticSemanticChecker.java (+12 -2), StaticSemanticDefMgr.java (+96 -90), defaultRules.xml (new 60), library.ocl (new 11)
  • src/seg/jUCMNav/views/preferences: StaticSemanticPreferencePage.java (+62 -7)
byrney 2008-01-23 23:25 Rev.: 1399

Move the XML schema file to seg/jUCMNav/staticSemantic.

31 lines of code changed in 2 files:

  • src/seg/jUCMNav/staticSemantic: StaticSemanticDefMgr.java (+4 -2), ruleschema.xsd (new 27)
byrney 2008-01-23 21:39 Rev.: 1398

Change code to Java complince 1.4

84 lines of code changed in 7 files:

  • src/seg/jUCMNav/actions/staticSemantic: VerifyStaticSemanticDelegate.java (+4 -7)
  • src/seg/jUCMNav/staticSemantic: Rule.java (+21 -17), StaticSemanticChecker.java (+23 -23), StaticSemanticDefMgr.java (+8 -8)
  • src/seg/jUCMNav/views/preferences: RuleEditDialog.java (+9 -10), RuleUtilityEditDialog.java (-4), StaticSemanticPreferencePage.java (+19 -19)
byrney 2008-01-23 17:42 Rev.: 1397

One static semantic preference page is added.
One static semantic menu item is added.

15 lines of code changed in 1 file:

  • plugin.xml (+15)
byrney 2008-01-23 17:41 Rev.: 1396

Texts of static semantic checking menu and preference page are added

2 lines of code changed in 1 file:

  • plugin.properties (+2)
byrney 2008-01-23 17:40 Rev.: 1395

One class that represents the Static Semantic Preference Page is added. This classes usese the other two dialogs:RuleEditDialog and RuleUtilityEditDialog.

795 lines of code changed in 3 files:

  • src/seg/jUCMNav/views/preferences: RuleEditDialog.java (new 360), RuleUtilityEditDialog.java (new 63), StaticSemanticPreferencePage.java (new 372)
byrney 2008-01-23 17:38 Rev.: 1394

This package is added to hold classes of static semantic rules defining and checking.

634 lines of code changed in 4 files:

  • src/seg/jUCMNav/staticSemantic: Rule.java (new 164), StaticCheckingMsg.java (new 74), StaticSemanticChecker.java (new 107), StaticSemanticDefMgr.java (new 289)
byrney 2008-01-23 17:36 Rev.: 1393

This package is added to hold the delegate class of the menu of Static Semantic Check.

82 lines of code changed in 1 file:

  • src/seg/jUCMNav/actions/staticSemantic: VerifyStaticSemanticDelegate.java (new 82)
byrney 2008-01-23 17:35 Rev.: 1392

Two plug-ins dependencies org.eclipse.ocl and org.eclipse.ocl.ecore are added.

3 lines of code changed in 1 file:

  • META-INF: MANIFEST.MF (+3 -1)
Generated by StatSVN 0.7.0