Package com.aelitis.azureus.plugins.startstoprules.defaultplugin

Examples of com.aelitis.azureus.plugins.startstoprules.defaultplugin.DefaultRankCalculator


      }
    }

    private void changeColor(TableCell cell, Download dl, int iState) {
      try {
        DefaultRankCalculator calc = StartStopRulesDefaultPlugin.getRankCalculator(dl);
       
        Color newFG = null;
        if (calc != null && dl.getState() == Download.ST_SEEDING
            && !calc.getActivelySeeding())
          newFG = Colors.colorWarning;

        cell.setForeground(Utils.colorToIntArray(newFG));

        iLastState = iState;
View Full Code Here


      }
    }

    private void changeColor(TableCell cell, Download dl, int iState) {
      try {
        DefaultRankCalculator calc = StartStopRulesDefaultPlugin.getRankCalculator(dl);
       
        Color newFG = null;
        if (calc != null && dl.getState() == Download.ST_DOWNLOADING
            && !calc.getActivelyDownloading())
          newFG = Colors.colorWarning;

        cell.setForeground(Utils.colorToIntArray(newFG));

        iLastState = iState;
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.plugins.startstoprules.defaultplugin.DefaultRankCalculator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.