[jsword-svn] common/java/swing/org/crosswire/common/swing/desktop s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Sat Sep 10 02:07:19 MST 2005


Update of /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop
In directory www.crosswire.org:/tmp/cvs-serv16975/java/swing/org/crosswire/common/swing/desktop

Modified Files:
	TabbedPanePanel.java TDIViewLayout.java 
Log Message:
Replaced BeanPanel with SiteEditor for the Installer.
Added XalanProcess which is useful outside of JSword to transform xml via xslt.
Cleaned up checkstyle complaints.

Index: TDIViewLayout.java
===================================================================
RCS file: /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop/TDIViewLayout.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** TDIViewLayout.java	21 Aug 2005 20:37:49 -0000	1.7
--- TDIViewLayout.java	10 Sep 2005 09:07:17 -0000	1.8
***************
*** 64,68 ****
  
          if (viewCount > 0)
!         {               
              if (viewCount == 1)
              {
--- 64,68 ----
  
          if (viewCount > 0)
!         {
              if (viewCount == 1)
              {

Index: TabbedPanePanel.java
===================================================================
RCS file: /cvs/jsword/common/java/swing/org/crosswire/common/swing/desktop/TabbedPanePanel.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TabbedPanePanel.java	21 Aug 2005 20:37:49 -0000	1.1
--- TabbedPanePanel.java	10 Sep 2005 09:07:17 -0000	1.2
***************
*** 35,69 ****
   * @author Willie Thean [williethean at yahoo dot com]
   */
! public class TabbedPanePanel extends JPanel 
! {   
!     public TabbedPanePanel() 
      {
          super();
          init();
      }
!     
!     public TabbedPanePanel(boolean isDoubleBuffered) 
      {
          super(isDoubleBuffered);
          init();
      }
!     
!     public TabbedPanePanel(LayoutManager layout) 
      {
          super(layout);
          init();
      }
!     
!     public TabbedPanePanel(LayoutManager layout, boolean isDoubleBuffered) 
      {
          super(layout, isDoubleBuffered);
          init();
      }
!     
!     private void init() 
      {
          this.setBorder(UIManager.getBorder("TabbedPanePanel.border")); //$NON-NLS-1$
      }
!     
      /**
       * If we setBorder on this JPanel, the border width will be part of the insets. 
--- 35,69 ----
   * @author Willie Thean [williethean at yahoo dot com]
   */
! public class TabbedPanePanel extends JPanel
! {
!     public TabbedPanePanel()
      {
          super();
          init();
      }
! 
!     public TabbedPanePanel(boolean isDoubleBuffered)
      {
          super(isDoubleBuffered);
          init();
      }
! 
!     public TabbedPanePanel(LayoutManager layout)
      {
          super(layout);
          init();
      }
! 
!     public TabbedPanePanel(LayoutManager layout, boolean isDoubleBuffered)
      {
          super(layout, isDoubleBuffered);
          init();
      }
! 
!     private void init()
      {
          this.setBorder(UIManager.getBorder("TabbedPanePanel.border")); //$NON-NLS-1$
      }
! 
      /**
       * If we setBorder on this JPanel, the border width will be part of the insets. 
***************
*** 71,75 ****
       * border. 
       */
!     public Insets getInsets() 
      {
          return new Insets(0, 0, 0, 0);
--- 71,75 ----
       * border. 
       */
!     public Insets getInsets()
      {
          return new Insets(0, 0, 0, 0);
***************
*** 80,82 ****
       */
      private static final long serialVersionUID = 5254437923545591019L;
! }
\ No newline at end of file
--- 80,82 ----
       */
      private static final long serialVersionUID = 5254437923545591019L;
! }



More information about the jsword-svn mailing list