Skip to content

Commit

Permalink
Renamed Facet package to be consistent with the other addons
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jan 25, 2013
1 parent c04e1e2 commit 62e648a
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.facets;
package org.jboss.forge.facet;

/**
* A base convenience {@link Facet} abstract class.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.forge.addon.facets;
package org.jboss.forge.facet;

import java.util.Collections;
import java.util.HashSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.facets;
package org.jboss.forge.facet;

/**
* A {@link Facet} is an access point to common functionality, file manipulations, descriptors that extend a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.facets;
package org.jboss.forge.facet;

/**
* An exception representing the state where a facet was requested, but was not available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.facets;
package org.jboss.forge.facet;

/**
* @author <a href="http://community.jboss.org/people/kenfinni">Ken Finnigan</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import java.util.Iterator;
import java.util.List;

import org.jboss.forge.facet.Facet;
import org.junit.Assert;
import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.jboss.forge.addon.facets;

import org.jboss.forge.facet.BaseFacet;

/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.jboss.forge.addon.facets;

import org.jboss.forge.facet.BaseFacet;

/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package org.jboss.forge.addon.facets;

import org.jboss.forge.facet.BaseFaceted;
import org.jboss.forge.facet.Facet;

/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import java.util.Comparator;
import java.util.List;

import org.jboss.forge.addon.facets.BaseFaceted;
import org.jboss.forge.addon.facets.Faceted;
import org.jboss.forge.facet.BaseFaceted;
import org.jboss.forge.facet.Faceted;

/**
* @author Mike Brock <cbrock@redhat.com>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.util.LinkedList;
import java.util.List;

import org.jboss.forge.addon.facets.Facet;
import org.jboss.forge.facet.Facet;

/**
* A standard, build-in, resource for representing directories on the file-system.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.io.InputStream;
import java.util.List;

import org.jboss.forge.addon.facets.Faceted;
import org.jboss.forge.facet.Faceted;

/**
* A Resource is an abstraction on top of usable items within a Forge project. For instance, files, source code, etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.util.ArrayList;
import java.util.List;

import org.jboss.forge.addon.facets.Facet;
import org.jboss.forge.facet.Facet;

/**
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.Collections;
import java.util.List;

import org.jboss.forge.addon.facets.Facet;
import org.jboss.forge.facet.Facet;

/**
* Represents any regular file which Forge does not hav any special handler for.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.util.Collections;
import java.util.List;

import org.jboss.forge.addon.facets.Facet;
import org.jboss.forge.facet.Facet;

public class UnknownFileResource extends FileResource<UnknownFileResource>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import java.util.List;

import org.jboss.forge.addon.facets.Facet;
import org.jboss.forge.facet.Facet;
import org.jboss.forge.resource.Resource;
import org.jboss.forge.resource.ResourceFactory;
import org.jboss.forge.resource.VirtualResource;
Expand Down

0 comments on commit 62e648a

Please sign in to comment.