FlexPMD/custom-ruleset/src/main/java/com/adobe/flexpmd/custom/MonkeyPatchingRule.java [38:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   protected final List< IFlexViolation > findViolationsInCurrentFile()
   {
      final List< IFlexViolation > violations = new ArrayList< IFlexViolation >();

      if ( getCurrentFile().getPackageName().startsWith( "mx." )
            && !getCurrentFile().getClassName().equals( "Version.as" )
            && !getCurrentFile().getClassName().endsWith( "Style.as" ) )
      {
         addViolation( violations,
                       new ViolationPosition( 0 ) );
      }
      return violations;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/main/java/com/adobe/ac/pmd/rules/architecture/MonkeyPatchingRule.java [38:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   protected final List< IFlexViolation > findViolationsInCurrentFile()
   {
      final List< IFlexViolation > violations = new ArrayList< IFlexViolation >();

      if ( getCurrentFile().getPackageName().startsWith( "mx." )
            && !getCurrentFile().getClassName().equals( "Version.as" )
            && !getCurrentFile().getClassName().endsWith( "Style.as" ) )
      {
         addViolation( violations,
                       new ViolationPosition( 0 ) );
      }
      return violations;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



