Changes the root package name from 'jd' to 'org.jd'

This commit is contained in:
emmanue1 2015-07-02 21:02:15 +02:00
parent 71130e633f
commit 62c3551778
288 changed files with 902 additions and 902 deletions

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api;
package org.jd.gui.api;
import jd.gui.api.feature.UriGettable;
import jd.gui.api.model.Container;
import jd.gui.api.model.Indexes;
import jd.gui.spi.*;
import org.jd.gui.api.feature.UriGettable;
import org.jd.gui.api.model.Container;
import org.jd.gui.api.model.Indexes;
import org.jd.gui.spi.*;
import javax.swing.*;
import java.io.File;

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.model.Container;
import org.jd.gui.api.model.Container;
public interface ContainerEntryGettable {
public Container.Entry getEntry();

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface ContentCopyable {
public void copy();

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.API;
import jd.gui.api.model.Indexes;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Indexes;
public interface ContentIndexable {
public Indexes index(API api);

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.API;
import org.jd.gui.api.API;
import java.io.OutputStream;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface ContentSearchable {
public boolean highlightText(String text, boolean caseSensitive);

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface ContentSelectable {
public void selectAll();

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface FocusedTypeGettable extends ContainerEntryGettable {
public String getFocusedTypeName();

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.model.Indexes;
import org.jd.gui.api.model.Indexes;
import java.util.Collection;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface LineNumberNavigable {
public int getMaximumLineNumber();

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import javax.swing.*;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface PageChangeable {
public void addPageChangeListener(PageChangeListener listener);

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
public interface PageClosable {
public boolean closePage();

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.API;
import org.jd.gui.api.API;
import javax.swing.*;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import java.util.Map;

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.API;
import org.jd.gui.api.API;
import java.nio.file.Path;
public interface SourcesSavable {

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import jd.gui.api.API;
import org.jd.gui.api.API;
public interface TreeNodeExpandable {
public void populateTreeNode(API api);

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import java.net.URI;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.feature;
package org.jd.gui.api.feature;
import java.net.URI;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.model;
package org.jd.gui.api.model;
import java.io.InputStream;
import java.net.URI;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.model;
package org.jd.gui.api.model;
import java.util.Collection;
import java.util.Map;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.model;
package org.jd.gui.api.model;
import javax.swing.*;

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.api.model;
package org.jd.gui.api.model;
import javax.swing.*;
import java.util.Collection;

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.model.Container;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Container;
import java.nio.file.Path;

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.model.Container;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Container;
import javax.swing.*;
import java.util.Collection;

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import org.jd.gui.api.API;
import java.io.File;

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.model.Container;
import jd.gui.api.model.Indexes;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Container;
import org.jd.gui.api.model.Indexes;
import java.util.regex.Pattern;

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.feature.UriGettable;
import jd.gui.api.model.Container;
import org.jd.gui.api.API;
import org.jd.gui.api.feature.UriGettable;
import org.jd.gui.api.model.Container;
import javax.swing.JComponent;

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import org.jd.gui.api.API;
public interface PasteHandler {
public boolean accept(Object obj);

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import java.awt.*;
import java.util.Map;

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.model.Container;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Container;
import java.nio.file.Path;
import java.util.regex.Pattern;

View File

@ -3,14 +3,14 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import javax.swing.tree.DefaultMutableTreeNode;
import jd.gui.api.API;
import jd.gui.api.feature.ContainerEntryGettable;
import jd.gui.api.feature.UriGettable;
import jd.gui.api.model.Container;
import org.jd.gui.api.API;
import org.jd.gui.api.feature.ContainerEntryGettable;
import org.jd.gui.api.feature.UriGettable;
import org.jd.gui.api.model.Container;
import java.util.regex.Pattern;

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import jd.gui.api.model.Container;
import jd.gui.api.model.Type;
import org.jd.gui.api.API;
import org.jd.gui.api.model.Container;
import org.jd.gui.api.model.Type;
import java.util.Collection;
import java.util.regex.Pattern;

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.spi;
package org.jd.gui.spi;
import jd.gui.api.API;
import org.jd.gui.api.API;
import java.net.URI;

View File

@ -3,15 +3,15 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui
package org.jd.gui
import groovy.swing.SwingBuilder
import jd.gui.service.configuration.ConfigurationPersisterService
import jd.gui.util.net.InterProcessCommunications
import org.jd.gui.service.configuration.ConfigurationPersisterService
import org.jd.gui.util.net.InterProcessCommunications
import javax.swing.JOptionPane
import jd.gui.controller.MainController
import org.jd.gui.controller.MainController
class App {
static final String SINGLE_INSTANCE = 'UIMainWindowPreferencesProvider.singleInstance'

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui
package org.jd.gui
class Constants {
final static String APP_NAME = "JD-GUI"

View File

@ -1,4 +1,4 @@
package jd.gui
package org.jd.gui
import com.apple.eawt.AppEvent
import com.apple.eawt.Application

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import jd.gui.api.feature.LineNumberNavigable
import jd.gui.model.configuration.Configuration
import jd.gui.view.GoToView
import org.jd.gui.api.feature.LineNumberNavigable
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.view.GoToView
class GoToController {
GoToView goToView

View File

@ -3,45 +3,45 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.feature.ContentCopyable
import jd.gui.api.feature.ContentIndexable
import jd.gui.api.feature.ContentSavable
import jd.gui.api.feature.ContentSearchable
import jd.gui.api.feature.FocusedTypeGettable
import jd.gui.api.feature.IndexesChangeListener
import jd.gui.api.feature.LineNumberNavigable
import jd.gui.api.feature.ContentSelectable
import jd.gui.api.feature.PreferencesChangeListener
import jd.gui.api.feature.SourcesSavable
import jd.gui.api.feature.UriGettable
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.model.history.History
import jd.gui.service.container.ContainerFactoryService
import jd.gui.service.fileloader.FileLoaderService
import jd.gui.service.indexer.IndexerService
import jd.gui.service.mainpanel.PanelFactoryService
import jd.gui.service.pastehandler.PasteHandlerService
import jd.gui.service.actions.ContextualActionsFactoryService
import jd.gui.service.preferencespanel.PreferencesPanelService
import jd.gui.service.sourcesaver.SourceSaverService
import jd.gui.service.treenode.TreeNodeFactoryService
import jd.gui.service.type.TypeFactoryService
import jd.gui.service.uriloader.UriLoaderService
import jd.gui.spi.ContainerFactory
import jd.gui.spi.FileLoader
import jd.gui.spi.Indexer
import jd.gui.spi.PanelFactory
import jd.gui.spi.SourceSaver
import jd.gui.spi.TreeNodeFactory
import jd.gui.spi.TypeFactory
import jd.gui.spi.UriLoader
import jd.gui.util.net.UriUtil
import org.jd.gui.api.API
import org.jd.gui.api.feature.ContentCopyable
import org.jd.gui.api.feature.ContentIndexable
import org.jd.gui.api.feature.ContentSavable
import org.jd.gui.api.feature.ContentSearchable
import org.jd.gui.api.feature.FocusedTypeGettable
import org.jd.gui.api.feature.IndexesChangeListener
import org.jd.gui.api.feature.LineNumberNavigable
import org.jd.gui.api.feature.ContentSelectable
import org.jd.gui.api.feature.PreferencesChangeListener
import org.jd.gui.api.feature.SourcesSavable
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.model.history.History
import org.jd.gui.service.container.ContainerFactoryService
import org.jd.gui.service.fileloader.FileLoaderService
import org.jd.gui.service.indexer.IndexerService
import org.jd.gui.service.mainpanel.PanelFactoryService
import org.jd.gui.service.pastehandler.PasteHandlerService
import org.jd.gui.service.actions.ContextualActionsFactoryService
import org.jd.gui.service.preferencespanel.PreferencesPanelService
import org.jd.gui.service.sourcesaver.SourceSaverService
import org.jd.gui.service.treenode.TreeNodeFactoryService
import org.jd.gui.service.type.TypeFactoryService
import org.jd.gui.service.uriloader.UriLoaderService
import org.jd.gui.spi.ContainerFactory
import org.jd.gui.spi.FileLoader
import org.jd.gui.spi.Indexer
import org.jd.gui.spi.PanelFactory
import org.jd.gui.spi.SourceSaver
import org.jd.gui.spi.TreeNodeFactory
import org.jd.gui.spi.TypeFactory
import org.jd.gui.spi.UriLoader
import org.jd.gui.util.net.UriUtil
import javax.swing.Action
import javax.swing.Icon
@ -50,8 +50,8 @@ import javax.swing.JFileChooser
import javax.swing.JLayer
import javax.swing.TransferHandler
import jd.gui.model.configuration.Configuration
import jd.gui.view.MainView
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.view.MainView
import javax.swing.filechooser.FileNameExtensionFilter
import javax.swing.filechooser.FileSystemView

View File

@ -3,17 +3,17 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.feature.IndexesChangeListener
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.model.configuration.Configuration
import jd.gui.util.net.UriUtil
import jd.gui.view.OpenTypeView
import org.jd.gui.api.API
import org.jd.gui.api.feature.IndexesChangeListener
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.util.net.UriUtil
import org.jd.gui.view.OpenTypeView
import java.awt.Cursor
import java.awt.Point

View File

@ -3,16 +3,16 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.feature.IndexesChangeListener
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.model.configuration.Configuration
import jd.gui.util.net.UriUtil
import jd.gui.view.OpenTypeHierarchyView
import org.jd.gui.api.API
import org.jd.gui.api.feature.IndexesChangeListener
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.util.net.UriUtil
import org.jd.gui.view.OpenTypeHierarchyView
import java.awt.Cursor
import java.awt.Point

View File

@ -3,13 +3,13 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.model.configuration.Configuration
import jd.gui.spi.PreferencesPanel
import jd.gui.view.PreferencesView
import org.jd.gui.api.API
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.spi.PreferencesPanel
import org.jd.gui.view.PreferencesView
class PreferencesController {
PreferencesView preferencesView

View File

@ -3,14 +3,14 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.feature.SourcesSavable
import jd.gui.model.configuration.Configuration
import jd.gui.view.SaveAllSourcesView
import org.jd.gui.api.API
import org.jd.gui.api.feature.SourcesSavable
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.view.SaveAllSourcesView
import java.nio.file.Files
import java.nio.file.Path

View File

@ -3,18 +3,18 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.feature.IndexesChangeListener
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.model.configuration.Configuration
import jd.gui.model.container.FilteredContainerWrapper
import jd.gui.service.type.TypeFactoryService
import jd.gui.view.SearchInConstantPoolsView
import org.jd.gui.api.API
import org.jd.gui.api.feature.IndexesChangeListener
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.model.container.FilteredContainerWrapper
import org.jd.gui.service.type.TypeFactoryService
import org.jd.gui.view.SearchInConstantPoolsView
import java.awt.Cursor
import java.util.regex.Pattern

View File

@ -3,15 +3,15 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.controller
package org.jd.gui.controller
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.model.Container
import jd.gui.model.configuration.Configuration
import jd.gui.model.container.FilteredContainerWrapper
import jd.gui.service.type.TypeFactoryService
import jd.gui.view.SelectLocationView
import org.jd.gui.api.API
import org.jd.gui.api.model.Container
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.model.container.FilteredContainerWrapper
import org.jd.gui.service.type.TypeFactoryService
import org.jd.gui.view.SelectLocationView
import java.awt.Point

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.model.configuration
package org.jd.gui.model.configuration
import java.awt.Dimension
import java.awt.Point

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.model.container
package org.jd.gui.model.container
import jd.gui.api.model.Container
import org.jd.gui.api.model.Container
class FilteredContainerWrapper implements Container {
Container container

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.model.history
package org.jd.gui.model.history
class History {
URI current = null

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.actions
package org.jd.gui.service.actions
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.model.Container
import jd.gui.spi.ContextualActionsFactory
import org.jd.gui.api.API
import org.jd.gui.api.model.Container
import org.jd.gui.spi.ContextualActionsFactory
import javax.swing.Action

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.configuration
package org.jd.gui.service.configuration
import jd.gui.model.configuration.Configuration
import org.jd.gui.model.configuration.Configuration
interface ConfigurationPersister {
Configuration load();

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.configuration
package org.jd.gui.service.configuration
@Singleton
class ConfigurationPersisterService {

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.configuration
package org.jd.gui.service.configuration
import groovy.xml.MarkupBuilder
import jd.gui.Constants
import jd.gui.model.configuration.Configuration
import jd.gui.service.platform.PlatformService
import org.jd.gui.Constants
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.service.platform.PlatformService
import java.awt.*

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.container
package org.jd.gui.service.container
import jd.gui.api.API
import jd.gui.spi.ContainerFactory
import org.jd.gui.api.API
import org.jd.gui.spi.ContainerFactory
import java.nio.file.Path

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.fileloader
package org.jd.gui.service.fileloader
import jd.gui.api.API
import jd.gui.spi.FileLoader
import org.jd.gui.api.API
import org.jd.gui.spi.FileLoader
@Singleton(lazy = true)
class FileLoaderService {

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.indexer
package org.jd.gui.service.indexer
import groovy.transform.CompileStatic
import jd.gui.api.model.Container
import jd.gui.spi.Indexer
import org.jd.gui.api.model.Container
import org.jd.gui.spi.Indexer
@CompileStatic
@Singleton(lazy = true)

View File

@ -3,21 +3,21 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.mainpanel
package org.jd.gui.service.mainpanel
import groovy.transform.CompileStatic
import jd.gui.api.API
import jd.gui.api.feature.ContentIndexable
import jd.gui.api.feature.SourcesSavable
import jd.gui.api.feature.SourcesSavable.Controller
import jd.gui.api.feature.SourcesSavable.Listener
import jd.gui.api.feature.UriGettable
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.spi.PanelFactory
import jd.gui.spi.SourceSaver
import jd.gui.spi.TreeNodeFactory
import jd.gui.view.component.panel.TreeTabbedPanel
import org.jd.gui.api.API
import org.jd.gui.api.feature.ContentIndexable
import org.jd.gui.api.feature.SourcesSavable
import org.jd.gui.api.feature.SourcesSavable.Controller
import org.jd.gui.api.feature.SourcesSavable.Listener
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.spi.PanelFactory
import org.jd.gui.spi.SourceSaver
import org.jd.gui.spi.TreeNodeFactory
import org.jd.gui.view.component.panel.TreeTabbedPanel
import javax.swing.JComponent
import javax.swing.tree.DefaultMutableTreeNode

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.mainpanel
package org.jd.gui.service.mainpanel
import jd.gui.api.model.Container
import jd.gui.spi.PanelFactory
import org.jd.gui.api.model.Container
import org.jd.gui.spi.PanelFactory
@Singleton(lazy = true)
class PanelFactoryService {

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.pastehandler
package org.jd.gui.service.pastehandler
import jd.gui.spi.PasteHandler
import org.jd.gui.spi.PasteHandler
@Singleton(lazy = true)
class PasteHandlerService {

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.platform
package org.jd.gui.service.platform
@Singleton
class PlatformService {

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.preferencespanel
package org.jd.gui.service.preferencespanel
import jd.gui.spi.PreferencesPanel
import org.jd.gui.spi.PreferencesPanel
@Singleton(lazy = true)
class PreferencesPanelService {

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.preferencespanel
package org.jd.gui.service.preferencespanel
import jd.gui.spi.PreferencesPanel
import org.jd.gui.spi.PreferencesPanel
import javax.swing.*
import java.awt.*

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.preferencespanel
package org.jd.gui.service.preferencespanel
import jd.gui.spi.PreferencesPanel
import org.jd.gui.spi.PreferencesPanel
import javax.swing.JCheckBox
import javax.swing.JPanel

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.sourcesaver
package org.jd.gui.service.sourcesaver
import groovy.transform.CompileStatic
import jd.gui.api.model.Container
import jd.gui.spi.SourceSaver
import org.jd.gui.api.model.Container
import org.jd.gui.spi.SourceSaver
@CompileStatic
@Singleton(lazy = true)

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.treenode
package org.jd.gui.service.treenode
import groovy.transform.CompileStatic
import jd.gui.api.model.Container
import jd.gui.spi.TreeNodeFactory
import org.jd.gui.api.model.Container
import org.jd.gui.spi.TreeNodeFactory
@CompileStatic
@Singleton(lazy = true)

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.type
package org.jd.gui.service.type
import groovy.transform.CompileStatic
import jd.gui.api.model.Container
import jd.gui.api.model.Type
import jd.gui.spi.TypeFactory
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Type
import org.jd.gui.spi.TypeFactory
@Singleton(lazy = true)
class TypeFactoryService {

View File

@ -3,10 +3,10 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.service.uriloader
package org.jd.gui.service.uriloader
import jd.gui.api.API
import jd.gui.spi.UriLoader
import org.jd.gui.api.API
import org.jd.gui.spi.UriLoader
@Singleton(lazy = true)
class UriLoaderService {

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.util.net
package org.jd.gui.util.net
class InterProcessCommunications {

View File

@ -3,13 +3,13 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.util.net
package org.jd.gui.util.net
import jd.gui.api.API
import jd.gui.api.model.Container
import jd.gui.api.model.Indexes
import jd.gui.api.model.Type
import jd.gui.service.type.TypeFactoryService
import org.jd.gui.api.API
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.Indexes
import org.jd.gui.api.model.Type
import org.jd.gui.service.type.TypeFactoryService
class UriUtil {
/*

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
dialog(
id:'goToDialog',

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.feature.LineNumberNavigable
import jd.gui.model.configuration.Configuration
import org.jd.gui.api.feature.LineNumberNavigable
import org.jd.gui.model.configuration.Configuration
import javax.swing.JComponent
import javax.swing.KeyStroke

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import javax.swing.BorderFactory
import javax.swing.UIManager
@ -16,8 +16,8 @@ import java.awt.Toolkit
import javax.swing.WindowConstants
import jd.gui.Constants
import jd.gui.service.platform.PlatformService
import org.jd.gui.Constants
import org.jd.gui.service.platform.PlatformService
import java.util.jar.Manifest
@ -28,7 +28,7 @@ actions {
mnemonic:'O',
accelerator:shortcut('O'),
shortDescription:'Open a file',
smallIcon:imageIcon(resource:'/images/open.png')
smallIcon:imageIcon(resource:'/org/jd/gui/images/open.png')
)
action(
id:'closeAction',
@ -40,14 +40,14 @@ actions {
id:'saveAction',
name:'Save',
accelerator:shortcut('S'),
smallIcon:imageIcon(resource:'/images/save.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/save.png'),
enabled:false
)
action(
id:'saveAllSourcesAction',
name:'Save All Sources',
accelerator:shortcut('alt S'),
smallIcon:imageIcon(resource:'/images/save_all.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/save_all.png'),
enabled:false
)
action(
@ -62,13 +62,13 @@ actions {
id:'copyAction',
name:'Copy',
accelerator:shortcut('C'),
smallIcon:imageIcon(resource:'/images/copy.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/copy.png'),
enabled:false
)
action(
id:'pasteAction',
name:'Paste Log',
smallIcon:imageIcon(resource:'/images/paste.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/paste.png'),
accelerator:shortcut('V')
)
action(
@ -87,7 +87,7 @@ actions {
id:'openTypeAction',
name:'Open Type...',
accelerator:shortcut('shift T'),
smallIcon:imageIcon(resource:'/images/open_type.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/open_type.png'),
enabled:false
)
action(
@ -106,21 +106,21 @@ actions {
id:'backwardAction',
name:'Back',
accelerator:'alt LEFT',
smallIcon:imageIcon(resource:'/images/backward_nav.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/backward_nav.png'),
enabled:false
)
action(
id:'forwardAction',
name:'Forward',
accelerator:'alt RIGHT',
smallIcon:imageIcon(resource:'/images/forward_nav.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/forward_nav.png'),
enabled:false
)
action(
id:'searchAction',
name:'Search...',
accelerator:shortcut('shift S'),
smallIcon:imageIcon(resource:'/images/search_src.png'),
smallIcon:imageIcon(resource:'/org/jd/gui/images/search_src.png'),
enabled:false
)
action(
@ -134,7 +134,7 @@ actions {
name:'Preferences...',
accelerator:shortcut('shift P'),
shortDescription:'Preferences',
smallIcon:imageIcon(resource:'/images/preferences.png')
smallIcon:imageIcon(resource:'/org/jd/gui/images/preferences.png')
)
action(
id:'aboutAction',
@ -167,7 +167,7 @@ actions {
frame(
id:'mainFrame',
title:'Java Decompiler',
iconImage:Toolkit.defaultToolkit.getImage(getClass().classLoader.getResource('images/jd_icon_128.png')),
iconImage:Toolkit.defaultToolkit.getImage(getClass().classLoader.getResource('org/jd/gui/images/jd_icon_128.png')),
minimumSize:[Constants.MINIMAL_WIDTH, Constants.MINIMAL_HEIGHT],
defaultCloseOperation:WindowConstants.EXIT_ON_CLOSE) {
menuBar {
@ -233,15 +233,15 @@ frame(
comboBox(id:'findComboBox', editable: true)
hstrut(5)
toolBar(floatable:false, rollover:true) {
iconButton(id:'findNextButton', action:findNextAction, icon:imageIcon(resource: '/images/next_nav.png'))
iconButton(id:'findNextButton', action:findNextAction, icon:imageIcon(resource: '/org/jd/gui/images/next_nav.png'))
hstrut(5)
iconButton(id:'findPreviousButton', action:findPreviousAction, icon:imageIcon(resource: '/images/prev_nav.png'))
iconButton(id:'findPreviousButton', action:findPreviousAction, icon:imageIcon(resource: '/org/jd/gui/images/prev_nav.png'))
}
checkBox(id:'findCaseSensitive', action:findCaseSensitiveAction, text:'Case sensitive')
hglue()
def closeIcon = imageIcon(resource:'/images/close.gif')
def closeActivateIcon = imageIcon(resource:'/images/close_active.gif')
def closeIcon = imageIcon(resource:'/org/jd/gui/images/close.gif')
def closeActivateIcon = imageIcon(resource:'/org/jd/gui/images/close_active.gif')
iconButton(id:'findCloseButton', action:findCloseAction, contentAreaFilled:false, icon:closeIcon, rolloverIcon:closeActivateIcon)
}
@ -266,7 +266,7 @@ dialog(
border:lineBorder(color:Color.BLACK),
background:Color.WHITE) {
borderLayout()
label(icon:imageIcon(resource:'/images/jd_icon_64.png'), border:emptyBorder(15), constraints:BorderLayout.WEST)
label(icon:imageIcon(resource:'/org/jd/gui/images/jd_icon_64.png'), border:emptyBorder(15), constraints:BorderLayout.WEST)
vbox(border:emptyBorder([15,0,15,15]), constraints:BorderLayout.EAST) {
hbox {
label(text: 'Java Decompiler', font:UIManager.getFont('Label.font').deriveFont(Font.BOLD, 14))

View File

@ -3,26 +3,26 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.Constants
import jd.gui.api.API
import jd.gui.api.feature.ContentSearchable
import jd.gui.api.feature.ContentSelectable
import jd.gui.api.feature.LineNumberNavigable
import jd.gui.api.feature.PageChangeListener
import jd.gui.api.feature.PageClosable
import jd.gui.api.feature.FocusedTypeGettable
import jd.gui.api.feature.ContentSavable
import jd.gui.api.feature.ContentCopyable
import jd.gui.api.feature.PreferencesChangeListener
import jd.gui.api.feature.SourcesSavable
import jd.gui.api.feature.UriGettable
import jd.gui.api.feature.UriOpenable
import jd.gui.model.configuration.Configuration
import jd.gui.model.history.History
import jd.gui.spi.FileLoader
import org.jd.gui.Constants
import org.jd.gui.api.API
import org.jd.gui.api.feature.ContentSearchable
import org.jd.gui.api.feature.ContentSelectable
import org.jd.gui.api.feature.LineNumberNavigable
import org.jd.gui.api.feature.PageChangeListener
import org.jd.gui.api.feature.PageClosable
import org.jd.gui.api.feature.FocusedTypeGettable
import org.jd.gui.api.feature.ContentSavable
import org.jd.gui.api.feature.ContentCopyable
import org.jd.gui.api.feature.PreferencesChangeListener
import org.jd.gui.api.feature.SourcesSavable
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.api.feature.UriOpenable
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.model.history.History
import org.jd.gui.spi.FileLoader
import javax.swing.Icon
import javax.swing.JComponent
@ -37,8 +37,8 @@ import javax.swing.JFrame
import javax.swing.JOptionPane
import javax.swing.filechooser.FileNameExtensionFilter
import jd.gui.view.component.IconButton
import jd.gui.view.component.panel.MainTabbedPanel
import org.jd.gui.view.component.IconButton
import org.jd.gui.view.component.panel.MainTabbedPanel
import java.awt.event.KeyAdapter
import java.awt.event.KeyEvent

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import javax.swing.ScrollPaneConstants
import java.awt.BorderLayout

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import javax.swing.ScrollPaneConstants
import java.awt.BorderLayout

View File

@ -3,16 +3,16 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.model.Container
import jd.gui.api.model.TreeNodeData
import jd.gui.api.model.Type
import jd.gui.model.configuration.Configuration
import jd.gui.view.component.Tree
import jd.gui.view.renderer.TreeNodeRenderer
import org.jd.gui.api.API
import org.jd.gui.api.model.Container
import org.jd.gui.api.model.TreeNodeData
import org.jd.gui.api.model.Type
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.view.component.Tree
import org.jd.gui.view.renderer.TreeNodeRenderer
import javax.swing.*
import javax.swing.event.TreeExpansionEvent
@ -30,8 +30,8 @@ import java.awt.event.MouseAdapter
import java.awt.event.MouseEvent
class OpenTypeHierarchyView {
static final ImageIcon ROOT_CLASS_ICON = new ImageIcon(OpenTypeHierarchyView.class.classLoader.getResource('images/generate_class.png'))
static final ImageIcon ROOT_INTERFACE_ICON = new ImageIcon(OpenTypeHierarchyView.class.classLoader.getResource('images/generate_int.png'))
static final ImageIcon ROOT_CLASS_ICON = new ImageIcon(OpenTypeHierarchyView.class.classLoader.getResource('org/jd/gui/images/generate_class.png'))
static final ImageIcon ROOT_INTERFACE_ICON = new ImageIcon(OpenTypeHierarchyView.class.classLoader.getResource('org/jd/gui/images/generate_int.png'))
SwingBuilder swing
API api

View File

@ -3,14 +3,14 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.model.Container
import jd.gui.model.configuration.Configuration
import jd.gui.view.bean.OpenTypeListCellBean
import jd.gui.view.renderer.OpenTypeListCellRenderer
import org.jd.gui.api.API
import org.jd.gui.api.model.Container
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.view.bean.OpenTypeListCellBean
import org.jd.gui.view.renderer.OpenTypeListCellRenderer
import javax.swing.*
import javax.swing.event.DocumentEvent

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import javax.swing.ScrollPaneConstants
import java.awt.BorderLayout

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.model.configuration.Configuration
import jd.gui.spi.PreferencesPanel
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.spi.PreferencesPanel
import javax.swing.BorderFactory
import javax.swing.Box

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
dialog(
id:'saveAllSourcesDialog',

View File

@ -3,11 +3,11 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.model.configuration.Configuration
import org.jd.gui.api.API
import org.jd.gui.model.configuration.Configuration
import javax.swing.JDialog
import javax.swing.JOptionPane

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import javax.swing.ScrollPaneConstants
import java.awt.BorderLayout

View File

@ -3,15 +3,15 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.feature.TreeNodeExpandable
import jd.gui.model.configuration.Configuration
import jd.gui.model.container.FilteredContainerWrapper
import jd.gui.view.component.Tree
import jd.gui.view.renderer.TreeNodeRenderer
import org.jd.gui.api.API
import org.jd.gui.api.feature.TreeNodeExpandable
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.model.container.FilteredContainerWrapper
import org.jd.gui.view.component.Tree
import org.jd.gui.view.renderer.TreeNodeRenderer
import javax.swing.JComponent
import javax.swing.JTree

View File

@ -3,15 +3,15 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view
package org.jd.gui.view
import groovy.swing.SwingBuilder
import jd.gui.api.API
import jd.gui.api.feature.TreeNodeExpandable
import jd.gui.model.configuration.Configuration
import jd.gui.model.container.FilteredContainerWrapper
import jd.gui.view.component.Tree
import jd.gui.view.renderer.TreeNodeRenderer
import org.jd.gui.api.API
import org.jd.gui.api.feature.TreeNodeExpandable
import org.jd.gui.model.configuration.Configuration
import org.jd.gui.model.container.FilteredContainerWrapper
import org.jd.gui.view.component.Tree
import org.jd.gui.view.renderer.TreeNodeRenderer
import javax.swing.AbstractAction
import javax.swing.JComponent

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.bean
package org.jd.gui.view.bean
import jd.gui.api.model.Container
import org.jd.gui.api.model.Container
import javax.swing.*

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component
package org.jd.gui.view.component
import java.awt.Insets

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component
package org.jd.gui.view.component
import jd.gui.api.model.TreeNodeData
import org.jd.gui.api.model.TreeNodeData
import sun.swing.DefaultLookup
import javax.swing.BorderFactory

View File

@ -3,7 +3,7 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component
package org.jd.gui.view.component
import javax.swing.*
import java.awt.*

View File

@ -3,13 +3,13 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component.panel
package org.jd.gui.view.component.panel
import jd.gui.api.feature.PageChangeListener
import jd.gui.api.feature.PageChangeable
import jd.gui.api.feature.PreferencesChangeListener
import jd.gui.api.feature.UriGettable
import jd.gui.api.feature.UriOpenable
import org.jd.gui.api.feature.PageChangeListener
import org.jd.gui.api.feature.PageChangeable
import org.jd.gui.api.feature.PreferencesChangeListener
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.api.feature.UriOpenable
import javax.swing.Icon
import javax.swing.JComponent
@ -24,7 +24,7 @@ import javax.swing.BoxLayout
import javax.swing.JLabel
import javax.swing.JPanel
import jd.gui.service.platform.PlatformService
import org.jd.gui.service.platform.PlatformService
class MainTabbedPanel extends TabbedPanel implements UriOpenable, PageChangeListener {
List<PageChangeListener> pageChangedListeners = []

View File

@ -3,12 +3,12 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component.panel
package org.jd.gui.view.component.panel
import jd.gui.api.API
import jd.gui.api.feature.PreferencesChangeListener
import jd.gui.api.feature.UriGettable
import jd.gui.service.platform.PlatformService
import org.jd.gui.api.API
import org.jd.gui.api.feature.PreferencesChangeListener
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.service.platform.PlatformService
import javax.swing.AbstractAction
import javax.swing.JComponent
@ -36,8 +36,8 @@ import java.awt.event.MouseEvent
import java.awt.event.MouseListener
class TabbedPanel extends JPanel implements PreferencesChangeListener {
static final ImageIcon CLOSE_ICON = new ImageIcon(TabbedPanel.class.classLoader.getResource('images/close.gif'))
static final ImageIcon CLOSE_ACTIVE_ICON = new ImageIcon(TabbedPanel.class.classLoader.getResource('images/close_active.gif'))
static final ImageIcon CLOSE_ICON = new ImageIcon(TabbedPanel.class.classLoader.getResource('org/jd/gui/images/close.gif'))
static final ImageIcon CLOSE_ACTIVE_ICON = new ImageIcon(TabbedPanel.class.classLoader.getResource('org/jd/gui/images/close_active.gif'))
static final String TAB_LAYOUT = 'UITabsPreferencesProvider.singleLineTabs'

View File

@ -3,20 +3,20 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.component.panel
package org.jd.gui.view.component.panel
import jd.gui.api.API
import jd.gui.api.feature.PageChangeListener
import jd.gui.api.feature.PageChangeable
import jd.gui.api.feature.PageClosable
import jd.gui.api.feature.PreferencesChangeListener
import jd.gui.api.feature.TreeNodeExpandable
import jd.gui.api.feature.UriGettable
import jd.gui.api.model.TreeNodeData
import jd.gui.api.feature.PageCreator
import jd.gui.api.feature.UriOpenable
import jd.gui.view.component.Tree
import jd.gui.view.renderer.TreeNodeRenderer
import org.jd.gui.api.API
import org.jd.gui.api.feature.PageChangeListener
import org.jd.gui.api.feature.PageChangeable
import org.jd.gui.api.feature.PageClosable
import org.jd.gui.api.feature.PreferencesChangeListener
import org.jd.gui.api.feature.TreeNodeExpandable
import org.jd.gui.api.feature.UriGettable
import org.jd.gui.api.model.TreeNodeData
import org.jd.gui.api.feature.PageCreator
import org.jd.gui.api.feature.UriOpenable
import org.jd.gui.view.component.Tree
import org.jd.gui.view.renderer.TreeNodeRenderer
import javax.swing.*
import javax.swing.event.ChangeEvent

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.renderer
package org.jd.gui.view.renderer
import jd.gui.view.bean.OpenTypeListCellBean
import org.jd.gui.view.bean.OpenTypeListCellBean
import javax.swing.JLabel
import javax.swing.JList

View File

@ -3,9 +3,9 @@
* This program is made available under the terms of the GPLv3 License.
*/
package jd.gui.view.renderer
package org.jd.gui.view.renderer
import jd.gui.api.model.TreeNodeData
import org.jd.gui.api.model.TreeNodeData
import javax.swing.BorderFactory
import javax.swing.JLabel

View File

@ -1 +0,0 @@
jd.gui.service.mainpanel.ContainerPanelFactoryProvider

View File

@ -1,2 +0,0 @@
jd.gui.service.preferencespanel.UISingleInstancePreferencesProvider
jd.gui.service.preferencespanel.UITabsPreferencesProvider

View File

@ -0,0 +1 @@
org.jd.gui.service.mainpanel.ContainerPanelFactoryProvider

View File

@ -0,0 +1,2 @@
org.jd.gui.service.preferencespanel.UISingleInstancePreferencesProvider
org.jd.gui.service.preferencespanel.UITabsPreferencesProvider

View File

Before

Width:  |  Height:  |  Size: 469 B

After

Width:  |  Height:  |  Size: 469 B

View File

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 88 B

View File

Before

Width:  |  Height:  |  Size: 88 B

After

Width:  |  Height:  |  Size: 88 B

View File

Before

Width:  |  Height:  |  Size: 413 B

After

Width:  |  Height:  |  Size: 413 B

Some files were not shown because too many files have changed in this diff Show More