Skip to main content
summaryrefslogtreecommitdiffstats
blob: a7ed09968a28d4257df4dd0d0dae1218f4ae08ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*******************************************************************************
 * Copyright (c) 2012 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.orcs.core.internal.util;

import java.util.concurrent.Callable;
import java.util.concurrent.FutureTask;
import org.eclipse.osee.framework.core.data.LazyObject;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.orcs.core.ds.HasOrcsData;
import org.eclipse.osee.orcs.core.ds.OrcsData;

/**
 * @author Roberto E. Escobar
 */
public abstract class OrcsLazyObject<T, D extends OrcsData> extends LazyObject<T> implements HasOrcsData<D> {

   private D data;

   public OrcsLazyObject(D data) {
      super();
      this.data = data;
   }

   @Override
   public D getOrcsData() {
      return data;
   }

   @Override
   public void setOrcsData(D data) {
      invalidate();
      this.data = data;
   }

   @Override
   protected final FutureTask<T> createLoaderTask() {
      Callable<T> callable = new Callable<T>() {
         @Override
         public T call() throws Exception {
            return instance();
         }
      };
      return new FutureTask<T>(callable);
   }

   protected abstract T instance() throws OseeCoreException;

}

Back to the top