]> matita.cs.unibo.it Git - logicplayer.git/blobdiff - mainActivity/src/com/example/furt/myapplication/Literal.java
Ported to latest version of Android SDK
[logicplayer.git] / mainActivity / src / com / example / furt / myapplication / Literal.java
diff --git a/mainActivity/src/com/example/furt/myapplication/Literal.java b/mainActivity/src/com/example/furt/myapplication/Literal.java
deleted file mode 100755 (executable)
index 3da98ce..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.example.furt.myapplication;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class Literal extends GenericFormula implements Formula
-{
-    String L;
-    Literal(char c)
-    {
-        priority=100;
-        L=c+"";
-    }
-    @Override
-    public String Draw(int p){return L;}
-
-    public List<IntroductionRule> introductionRules(){
-        List<IntroductionRule> nodes=new ArrayList<IntroductionRule>();
-        nodes.addAll(super.introductionRules()); //eredita la R.A.A.
-        return nodes;
-    }
-
-    @Override
-    public boolean Fill(Formula F) {
-        return false;
-    }
-
-    @Override
-    public Formula duplicate() {
-        return new Literal(this.L.charAt(0));
-    }
-}