Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/context/java/GenericJavaCacheable2_0.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/context/java/GenericJavaCacheable2_0.java135
1 files changed, 0 insertions, 135 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/context/java/GenericJavaCacheable2_0.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/context/java/GenericJavaCacheable2_0.java
deleted file mode 100644
index e21fb8be65..0000000000
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/context/java/GenericJavaCacheable2_0.java
+++ /dev/null
@@ -1,135 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009 Oracle. All rights reserved.
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0, which accompanies this distribution
- * and is available at http://www.eclipse.org/legal/epl-v10.html.
- *
- * Contributors:
- * Oracle - initial API and implementation
- ******************************************************************************/
-package org.eclipse.jpt.core.internal.jpa2.context.java;
-
-import org.eclipse.jdt.core.dom.CompilationUnit;
-import org.eclipse.jpt.core.internal.context.java.AbstractJavaJpaContextNode;
-import org.eclipse.jpt.core.jpa2.context.java.JavaCacheable2_0;
-import org.eclipse.jpt.core.jpa2.context.java.JavaCacheableHolder2_0;
-import org.eclipse.jpt.core.jpa2.resource.java.Cacheable2_0Annotation;
-import org.eclipse.jpt.core.resource.java.JavaResourcePersistentType;
-import org.eclipse.jpt.core.utility.TextRange;
-
-public class GenericJavaCacheable2_0
- extends AbstractJavaJpaContextNode
- implements JavaCacheable2_0
-{
- protected boolean defaultCacheable;
- protected Boolean specifiedCacheable;
-
- protected JavaResourcePersistentType resourcePersistentType;
-
- public GenericJavaCacheable2_0(JavaCacheableHolder2_0 parent) {
- super(parent);
- }
-
- @Override
- public JavaCacheableHolder2_0 getParent() {
- return (JavaCacheableHolder2_0) super.getParent();
- }
-
- protected String getCacheableAnnotationName() {
- return Cacheable2_0Annotation.ANNOTATION_NAME;
- }
-
- protected Cacheable2_0Annotation getResourceCacheable() {
- return (Cacheable2_0Annotation) this.resourcePersistentType.getAnnotation(getCacheableAnnotationName());
- }
-
- protected void addResourceCacheable() {
- this.resourcePersistentType.addAnnotation(getCacheableAnnotationName());
- }
-
- protected void removeResourceCacheable() {
- this.resourcePersistentType.removeAnnotation(getCacheableAnnotationName());
- }
-
- protected boolean calculateDefaultCacheable() {
- return getParent().calculateDefaultCacheable();
- }
-
- public boolean isCacheable() {
- return this.specifiedCacheable != null ? this.specifiedCacheable.booleanValue() : this.defaultCacheable;
- }
-
- public boolean isDefaultCacheable() {
- return this.defaultCacheable;
- }
-
- protected void setDefaultCacheable(boolean newDefaultCacheable) {
- boolean oldDefaultCacheable = this.defaultCacheable;
- this.defaultCacheable = newDefaultCacheable;
- firePropertyChanged(DEFAULT_CACHEABLE_PROPERTY, oldDefaultCacheable, newDefaultCacheable);
- }
-
- public Boolean getSpecifiedCacheable() {
- return this.specifiedCacheable;
- }
-
- public void setSpecifiedCacheable(Boolean newSpecifiedCacheable) {
- if (this.specifiedCacheable == newSpecifiedCacheable) {
- return;
- }
- Boolean oldSpecifiedCacheable = this.specifiedCacheable;
- this.specifiedCacheable = newSpecifiedCacheable;
-
- if (newSpecifiedCacheable != null) {
- if (getResourceCacheable() == null) {
- addResourceCacheable();
- }
- if (newSpecifiedCacheable.booleanValue()) {
- if (getResourceCacheable().getValue() == Boolean.FALSE) {
- getResourceCacheable().setValue(null);
- }
- }
- else {
- getResourceCacheable().setValue(Boolean.FALSE);
- }
- }
- else {
- removeResourceCacheable();
- }
- firePropertyChanged(SPECIFIED_CACHEABLE_PROPERTY, oldSpecifiedCacheable, newSpecifiedCacheable);
- }
-
- protected void setSpecifiedCacheable_(Boolean newSpecifiedCacheable) {
- Boolean oldSpecifiedCacheable = this.specifiedCacheable;
- this.specifiedCacheable = newSpecifiedCacheable;
- firePropertyChanged(SPECIFIED_CACHEABLE_PROPERTY, oldSpecifiedCacheable, newSpecifiedCacheable);
- }
-
- public void initialize(JavaResourcePersistentType jrpt) {
- this.resourcePersistentType = jrpt;
- Cacheable2_0Annotation resourceCacheable = this.getResourceCacheable();
- this.specifiedCacheable = this.specifiedCacheable(resourceCacheable);
- }
-
- public void update(JavaResourcePersistentType jrpt) {
- this.resourcePersistentType = jrpt;
- Cacheable2_0Annotation resourceCacheable = this.getResourceCacheable();
- this.setSpecifiedCacheable_(this.specifiedCacheable(resourceCacheable));
- this.setDefaultCacheable(this.calculateDefaultCacheable());
- }
-
- private Boolean specifiedCacheable(Cacheable2_0Annotation resourceCacheable) {
- if (resourceCacheable == null) {
- return null;
- }
- if (resourceCacheable.getValue() == null) { //@Cacheable is equivalent to @Cacheable(true)
- return Boolean.TRUE;
- }
- return resourceCacheable.getValue();
- }
-
- public TextRange getValidationTextRange(CompilationUnit astRoot) {
- Cacheable2_0Annotation resourceCacheable = this.getResourceCacheable();
- return resourceCacheable == null ? null : resourceCacheable.getTextRange(astRoot);
- }
-}

Back to the top