Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e2793587e72a430519ca9fe17608a74a8212db68 (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
57
/**
 * Copyright (c) 2006 IBM Corporation and others.
 * 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: 
 *   IBM - Initial API and implementation
 */
package org.eclipse.emf.codegen.merge.java.facade.jdom;


import org.eclipse.jdt.core.jdom.IDOMCompilationUnit;

import org.eclipse.emf.codegen.merge.java.facade.JCompilationUnit;


/**
 * @since 2.2.0
 */
@SuppressWarnings("deprecation")
public class JDOMJCompilationUnit extends JDOMJNode implements JCompilationUnit
{
  protected String originalContent;
  
  public JDOMJCompilationUnit(IDOMCompilationUnit compilationUnit)
  {
    super(compilationUnit);
  }

  @Override
  protected IDOMCompilationUnit getWrappedObject()
  {
    return (IDOMCompilationUnit)super.getWrappedObject();
  }
  
  public String getHeader()
  {
    return getWrappedObject().getHeader();
  }
  
  public void setHeader(String header)
  {
    getWrappedObject().setHeader(header);
  }
  
  public void setOriginalContent(String originalContent)
  {
    this.originalContent = originalContent;
  }
  
  public String getOriginalContent()
  {
    return originalContent;
  }
}

Back to the top