/tests/com/google/appengine/datanucleus/test/IsEmbeddedWithEmbeddedSuperclass2.java

http://datanucleus-appengine.googlecode.com/ · Java · 38 lines · 12 code · 5 blank · 21 comment · 0 complexity · 780e82288e29ea0ad6e787a3789a02d9 MD5 · raw file

  1. /*
  2. * Copyright (C) 2010 Google Inc
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.appengine.datanucleus.test;
  17. import javax.persistence.Embeddable;
  18. /**
  19. * The runtime enhancer has problems with static inner embedded classes that
  20. * have embeddable super classes, so this class gets its own file.
  21. *
  22. * @author Max Ross <max.ross@gmail.com>
  23. */
  24. @Embeddable
  25. public class IsEmbeddedWithEmbeddedSuperclass2 extends SubclassesJPA.IsEmbeddedBase2 {
  26. private String val3;
  27. public String getVal3() {
  28. return val3;
  29. }
  30. public void setVal3(String val3) {
  31. this.val3 = val3;
  32. }
  33. }