-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is actually a required paradigm for this project that had yet to be implemented. Before this, there was no way for independent developers to amend custom FileArchivers. new version! 0.4
- Loading branch information
Alex Aiezza
authored and
Alex Aiezza
committed
May 6, 2016
1 parent
ebeadca
commit 608839e
Showing
18 changed files
with
344 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry excluding="launch4j_configs" including="*Usage.txt" kind="src" path="resources"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" path="test"/> | ||
<classpathentry kind="src" path="test_resources"/> | ||
<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_73"> | ||
<attributes> | ||
<attribute name="owner.project.facets" value="java"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry excluding="launch4j_configs" including="*Usage.txt" kind="src" path="resources"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" path="test"/> | ||
<classpathentry kind="src" path="test_resources"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_73"> | ||
<attributes> | ||
<attribute name="owner.project.facets" value="java"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* COPYRIGHT (C) 2015 Alex Aiezza. All Rights Reserved. | ||
* | ||
* See the LICENSE for the specific language governing permissions and | ||
* limitations under the License provided with this project. | ||
*/ | ||
package edu.rit.flick; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
import edu.rit.flick.config.DeflationOptionSet; | ||
import edu.rit.flick.config.InflationOptionSet; | ||
|
||
/** | ||
* @author Alex Aiezza | ||
* | ||
* | ||
*/ | ||
@Retention ( RetentionPolicy.RUNTIME ) | ||
public @interface RegisterFileDeflatorInflator | ||
{ | ||
String [] inflatedExtensions(); | ||
|
||
String deflatedExtension() default "flick"; | ||
|
||
Class<? extends FileDeflator> fileDeflator() default FlickFile.class; | ||
|
||
Class<? extends FileInflator> fileInflator() default FlickFile.class; | ||
|
||
Class<? extends DeflationOptionSet> fileDeflatorOptionSet(); | ||
|
||
Class<? extends InflationOptionSet> fileInflatorOptionSet(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.