Skip to content

Commit

Permalink
Rename package from javax to jakarta
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Coustick <jonathan.coustick@payara.fish>
  • Loading branch information
Cousjava committed Nov 8, 2019
1 parent 676bcee commit f561ae6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

import java.lang.annotation.Target;
import java.lang.annotation.Retention;
Expand Down Expand Up @@ -180,8 +180,8 @@
* one of the dependencies (using {@linkplain Singleton singleton scope}, for
* example) may also enable a valid circular relationship.
*
* @see javax.inject.Qualifier @Qualifier
* @see javax.inject.Provider
* @see jakarta.inject.Qualifier @Qualifier
* @see jakarta.inject.Provider
*/
@Target({ METHOD, CONSTRUCTOR, FIELD })
@Retention(RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

import java.lang.annotation.Retention;
import java.lang.annotation.Documented;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

/**
* Provides instances of {@code T}. Typically implemented by an injector. For
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

import java.lang.annotation.Target;
import java.lang.annotation.Retention;
Expand Down Expand Up @@ -50,7 +50,7 @@
* public enum Color { RED, BLACK, TAN }
* }</pre>
*
* @see javax.inject.Named @Named
* @see jakarta.inject.Named @Named
*/
@Target(ANNOTATION_TYPE)
@Retention(RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

import java.lang.annotation.Target;
import java.lang.annotation.Retention;
Expand Down Expand Up @@ -71,7 +71,7 @@
* forgot to configure the scope in the injector. A conservative injector
* would generate an error rather than not apply a scope.
*
* @see javax.inject.Singleton @Singleton
* @see jakarta.inject.Singleton @Singleton
*/
@Target(ANNOTATION_TYPE)
@Retention(RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package javax.inject;
package jakarta.inject;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand All @@ -23,7 +23,7 @@
/**
* Identifies a type that the injector only instantiates once. Not inherited.
*
* @see javax.inject.Scope @Scope
* @see jakarta.inject.Scope @Scope
*/
@Scope
@Documented
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,4 @@
*
* @see javax.inject.Inject @Inject
*/
package javax.inject;
package jakarta.inject;

0 comments on commit f561ae6

Please sign in to comment.