Skip to content

Commit

Permalink
reduce visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ccavanaugh committed Feb 21, 2016
1 parent 93c136a commit db9e11a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
*/
public abstract class BaseDynamicJasperReport {

public final ResourceBundle rb = ResourceUtils.getBundle();
protected final ResourceBundle rb = ResourceUtils.getBundle();

private final static String COLUMN_PROPERTY = "COLUMN_";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* @author Peter Vida
*
*/
@SuppressWarnings("WeakerAccess")
public class JGMonthViewUI extends BasicMonthViewUI {
private MouseListener mouseListener;

Expand Down
14 changes: 7 additions & 7 deletions jidesoft/src/main/java/com/jidesoft/swing/JideScrollPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public final class JideScrollPane extends JScrollPane implements JideScrollPaneC

private static final String PROPERTY_COLUMN_HEADERS_HEIGHT_UNIFIED = "columnHeadersHeightUnified";

public static final String CLIENT_PROPERTY_SLAVE_VIEWPORT = "synchronizeViewSlaveViewport";
public static final String CLIENT_PROPERTY_MASTER_VIEWPORT = "synchronizeViewMasterViewport";
static final String CLIENT_PROPERTY_SLAVE_VIEWPORT = "synchronizeViewSlaveViewport";
static final String CLIENT_PROPERTY_MASTER_VIEWPORT = "synchronizeViewMasterViewport";

/**
* Creates a {@code JideScrollPane} that displays the view component in a viewport whose view position can be
Expand Down Expand Up @@ -161,7 +161,7 @@ public JViewport getRowFooter() {
* @see #getRowFooter
* @see #setRowFooterView(java.awt.Component)
*/
void setRowFooter(JViewport rowFooter) {
private void setRowFooter(JViewport rowFooter) {
JViewport old = getRowFooter();
_rowFooter = rowFooter;
if (null != rowFooter) {
Expand Down Expand Up @@ -231,7 +231,7 @@ public void setRowFooterView(Component view) {
*
* @see #setColumnFooter(javax.swing.JViewport)
*/
public JViewport getColumnFooter() {
JViewport getColumnFooter() {
return _columnFooter;
}

Expand All @@ -245,7 +245,7 @@ public JViewport getColumnFooter() {
* @see #getColumnFooter
* @see #setColumnFooterView(java.awt.Component)
*/
void setColumnFooter(JViewport columnFooter) {
private void setColumnFooter(final JViewport columnFooter) {
JViewport old = getColumnFooter();
_columnFooter = columnFooter;
if (null != columnFooter) {
Expand Down Expand Up @@ -361,7 +361,7 @@ public void setCorner(String key, Component corner) {
*
* @see #setCorner(String, java.awt.Component)
*/
public Component getScrollBarCorner(String key) {
Component getScrollBarCorner(String key) {
boolean isLeftToRight = getComponentOrientation().isLeftToRight();
if (key.equals(HORIZONTAL_LEADING)) {
key = isLeftToRight ? HORIZONTAL_LEFT : HORIZONTAL_RIGHT;
Expand Down Expand Up @@ -401,7 +401,7 @@ public void setLayout(LayoutManager layout) {
*
* @return true or false.
*/
public boolean isColumnHeadersHeightUnified() {
boolean isColumnHeadersHeightUnified() {
return _columnHeadersHeightUnified;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Constants used with the JideScrollPane component.
*/
public interface JideScrollPaneConstants extends ScrollPaneConstants {
interface JideScrollPaneConstants extends ScrollPaneConstants {
/**
* Identifies the area along the left side of the viewport between the
* upper right corner and the lower right corner.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void syncWithScrollPane(JScrollPane sp) {
}
}

boolean isColumnHeadersHeightUnified(JScrollPane sp) {
private boolean isColumnHeadersHeightUnified(JScrollPane sp) {
return sp instanceof JideScrollPane && ((JideScrollPane) sp).isColumnHeadersHeightUnified();
}

Expand Down

0 comments on commit db9e11a

Please sign in to comment.