Skip to content

Commit

Permalink
latest fixes, updates, and enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
vimsh committed May 11, 2014
1 parent ae3d91a commit bb690b4
Show file tree
Hide file tree
Showing 27 changed files with 4,877 additions and 595 deletions.
2 changes: 2 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.7.0"/>
<classpathentry kind="lib" path="lib/jcommon-1.0.21.jar"/>
<classpathentry kind="lib" path="lib/jfreechart-1.0.17.jar"/>
<classpathentry kind="lib" path="lib/jfreesvg-1.4.jar"/>
<classpathentry kind="lib" path="lib/swtgraphics2d.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.14.jar"/>
<classpathentry kind="lib" path="lib/jmathplot.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file modified MafScaling.jar
Binary file not shown.
Binary file added lib/jmathplot.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions log4j.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ log4j.rootLogger=info, stdout, file

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%-5r %-5p [%t] - %m%n
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5p] %F:%L - %m%n

log4j.appender.file=org.apache.log4j.RollingFileAppender
log4j.appender.file.File=./maf_scaling.log
log4j.appender.file.MaxBackupIndex=1
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%-5r %-5p [%t] - %m%n

log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5p] %F:%L - %m%n
Binary file added resources/arrow.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/chart.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/table.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 19 additions & 1 deletion src/com/vgi/mafscaling/BgColorFormatRenderer.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* Open-Source tuning tools
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

package com.vgi.mafscaling;

import java.awt.Color;
Expand All @@ -7,7 +25,7 @@

public class BgColorFormatRenderer extends DefaultTableCellRenderer {
private static final long serialVersionUID = -2283383526525346419L;
Color bgColor = getBackground();
private Color bgColor = getBackground();
private Color[][] colors = null;

/**
Expand Down
415 changes: 111 additions & 304 deletions src/com/vgi/mafscaling/ClosedLoop.java

Large diffs are not rendered by default.

Loading

0 comments on commit bb690b4

Please sign in to comment.