Skip to content

Commit

Permalink
renaming to fragment args
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannes Dorfmann committed Aug 16, 2014
1 parent 6d6d9b2 commit 5dc012d
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions annotation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>fragargs-parent</artifactId>
<groupId>com.hannesdorfmann.fragargs</groupId>
<version>0.0.4</version>
<groupId>com.hannesdorfmann.fragmentargs</groupId>
<version>0.0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hannesdorfmann.fragargs.annotation;
package com.hannesdorfmann.fragmentargs.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<version>7</version>
</parent>

<groupId>com.hannesdorfmann.fragargs</groupId>
<groupId>com.hannesdorfmann.fragmentargs</groupId>
<artifactId>fragargs-parent</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
<version>0.0.8</version>
<modules>
<module>annotation</module>
<module>processor</module>
Expand Down
6 changes: 3 additions & 3 deletions processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>fragargs-parent</artifactId>
<groupId>com.hannesdorfmann.fragargs</groupId>
<version>0.0.4</version>
<groupId>com.hannesdorfmann.fragmentargs</groupId>
<version>0.0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -69,7 +69,7 @@
</goals>
<configuration>
<annotationProcessors>
<annotationProcessor>com.hannesdorfmann.fragargs.processor.ArgProcessor
<annotationProcessor>com.hannesdorfmann.fragmentargs.processor.ArgProcessor
</annotationProcessor>
</annotationProcessors>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hannesdorfmann.fragargs.processor;
package com.hannesdorfmann.fragmentargs.processor;

import javax.lang.model.element.Element;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.hannesdorfmann.fragargs.processor;
package com.hannesdorfmann.fragmentargs.processor;

import com.hannesdorfmann.fragargs.annotation.Arg;
import com.hannesdorfmann.fragmentargs.annotation.Arg;
import com.squareup.javawriter.JavaWriter;
import java.io.IOException;
import java.io.Serializable;
Expand Down Expand Up @@ -36,7 +36,7 @@
*
* @author Hannes Dorfmann
*/
@SupportedAnnotationTypes("com.hannesdorfmann.fragargs.annotation.Arg")
@SupportedAnnotationTypes("com.hannesdorfmann.fragmentargs.annotation.Arg")
public class ArgProcessor extends AbstractProcessor {

private static final Map<String, String> ARGUMENT_TYPES = new HashMap<String, String>(20);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.hannesdorfmann.fragargs.processor;
package com.hannesdorfmann.fragmentargs.processor;

import com.hannesdorfmann.fragargs.annotation.Arg;
import com.hannesdorfmann.fragmentargs.annotation.Arg;
import javax.lang.model.element.Element;

public class ArgumentAnnotatedField extends AnnotatedField {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hannesdorfmann.fragargs.processor;
package com.hannesdorfmann.fragmentargs.processor;

import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.Element;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
com.hannesdorfmann.fragargs.processor.ArgProcessor
com.hannesdorfmann.fragmentargs.processor.ArgProcessor

0 comments on commit 5dc012d

Please sign in to comment.