Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
BookWood7th committed Sep 19, 2024
1 parent 5b797f3 commit 061c43b
Show file tree
Hide file tree
Showing 43 changed files with 57 additions and 83 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.IntegerLDT;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.BooleanLDT;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.logic.Namespace;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Name;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

public class IllegalFormulaException extends Exception {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.logic.Namespace;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.IntegerLDT;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.jspecify.annotations.NonNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import org.jetbrains.annotations.NotNull;
import org.key_project.util.collection.Pair;
import de.unruh.isabelle.control.Isabelle;
import de.unruh.isabelle.pure.Theory;
import org.jspecify.annotations.NonNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import java.util.Collection;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.core.KeYMediator;
import de.uka.ilkd.key.gui.MainWindow;
import de.uka.ilkd.key.gui.colors.ColorSettings;
import key.isabelletranslation.gui.IsabelleProgressDialog;
import key.isabelletranslation.gui.IsabelleProgressModel;
import org.key_project.isabelletranslation.gui.IsabelleProgressDialog;
import org.key_project.isabelletranslation.gui.IsabelleProgressModel;

import javax.swing.*;
import java.awt.*;
Expand Down Expand Up @@ -64,7 +64,7 @@ private void applyResults() {
//TODO create own close action
} finally {
mediator.startInterface(true);
// switch to new open goal
//switch to new open goal
mediator.getSelectionModel().defaultSelection();
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.JavaDLTheory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.proof.Goal;
import de.unruh.isabelle.control.Isabelle;
import de.unruh.isabelle.java.JIsabelle;
import de.unruh.isabelle.mlvalue.*;
import de.unruh.isabelle.pure.Implicits;
import de.unruh.isabelle.pure.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import scala.Option;
import scala.Tuple2;
import scala.collection.immutable.List;
import scala.collection.mutable.Builder;
import scala.concurrent.Await;
import scala.concurrent.Future;
import scala.concurrent.duration.Duration;

import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

public class IsabelleProblem {
private final Goal goal;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.unruh.isabelle.control.Isabelle;
import de.unruh.isabelle.control.IsabelleMLException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.gui.MainWindow;
import de.uka.ilkd.key.gui.settings.InvalidSettingsInputException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package key.isabelletranslation;

import de.unruh.isabelle.control.Isabelle;
package org.key_project.isabelletranslation;

import java.util.TimerTask;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.unruh.isabelle.control.Isabelle;
import de.unruh.isabelle.control.IsabelleMLException;
Expand Down Expand Up @@ -172,7 +172,7 @@ public SolverState getState() {

@Override
public boolean wasInterrupted() {
return Thread.currentThread().isInterrupted();
return reasonOfInterruption != ReasonOfInterruption.NoInterruption;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

public interface IsabelleSolverListener extends IsabelleLauncherListener {
void parsingStarted(IsabelleSolver solver, IsabelleProblem problem);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.core.KeYMediator;
import de.uka.ilkd.key.gui.MainWindow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.settings.AbstractSettings;
import de.uka.ilkd.key.settings.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.JavaDLTheory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import scala.Option;
import scala.Tuple2;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import org.key_project.logic.Term;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.core.KeYMediator;
import de.uka.ilkd.key.gui.MainWindow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.core.KeYMediator;
import de.uka.ilkd.key.gui.MainWindow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation;
package org.key_project.isabelletranslation;

import de.uka.ilkd.key.java.Services;
import de.uka.ilkd.key.ldt.HeapLDT;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation.gui;
package org.key_project.isabelletranslation.gui;

import de.uka.ilkd.key.gui.IssueDialog;
import de.uka.ilkd.key.gui.MainWindow;
import org.key_project.util.java.SwingUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import key.isabelletranslation.gui.IsabelleProgressModel.ProcessColumn.ProcessData;
import org.key_project.isabelletranslation.gui.IsabelleProgressModel.ProcessColumn.ProcessData;

import javax.swing.*;
import javax.swing.event.TableModelEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* This file is part of KeY - https://key-project.org
* KeY is licensed under the GNU General Public License Version 2
* SPDX-License-Identifier: GPL-2.0-only */
package key.isabelletranslation.gui;
package org.key_project.isabelletranslation.gui;

import java.awt.Color;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
key.isabelletranslation.IsabelleTranslationExtension
org.key_project.isabelletranslation.IsabelleTranslationExtension

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
org.key_project.isabelletranslation.DefinedSymbolsHandler
org.key_project.isabelletranslation.InstanceOperatorHandler
org.key_project.isabelletranslation.BooleanOpHandler
org.key_project.isabelletranslation.PolymorphicHandler
org.key_project.isabelletranslation.QuantifierHandler
org.key_project.isabelletranslation.LogicalVariableHandler
org.key_project.isabelletranslation.NumberConstantsHandler
org.key_project.isabelletranslation.IntegerOpHandler
org.key_project.isabelletranslation.InfiniteUnionHandler
org.key_project.isabelletranslation.BSumHandler
org.key_project.isabelletranslation.SeqDefHandler
org.key_project.isabelletranslation.SortDependingFunctionHandler
org.key_project.isabelletranslation.FieldHandler
org.key_project.isabelletranslation.ObserverFunctionHandler
org.key_project.isabelletranslation.UninterpretedSymbolsHandler

0 comments on commit 061c43b

Please sign in to comment.