Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e1f18cfa01499b35827d065b3e3487c470c7ac7d (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
 * 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 v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 * 
 * Contributors: 
 *   IBM - Initial API and implementation
 */
package org.eclipse.emf.codegen.merge.java.facade.ast;

import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.PackageDeclaration;

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

/**
 * Wraps {@link PackageDeclaration} object.
 * 
 * @since 2.2.0
 */
public class ASTJPackage extends ASTJNode<PackageDeclaration> implements JPackage
{
  /**
   * @param packageDeclaration
   */
  public ASTJPackage(PackageDeclaration packageDeclaration)
  {
    super(packageDeclaration);
  }
  
  public String getName()
  {
    if (name == UNITIALIZED_STRING)
    {
      name = ASTFacadeHelper.toString(getASTNode().getName());
    }
    return name;
  }
  
  public void setName(String name)
  {
    this.name = name;
    setNodeProperty(getASTNode(), name, PackageDeclaration.NAME_PROPERTY, ASTNode.SIMPLE_NAME);
  }  
  
  /**
   * Returns original contents of the package declaration without the javadoc of the package.
   * @see org.eclipse.emf.codegen.merge.java.facade.ast.ASTJNode#getContents()
   */
  @Override
  public String getContents()
  {
    String content = super.getContents();
    return content != null ? fixPackageContent(content) : content;
  }
  
  /**
   * Fixes package contents to not include the header or the javadoc.
   * @param content
   * @return String
   * @see PackageDeclaration
   */
  protected String fixPackageContent(String content)
  {
    String header = getFacadeHelper().getCompilationUnit(this).getHeader();
    if (header != null && content.startsWith(header))
    {
      content = content.substring(header.length());
    }
    else
    {
      String javadoc = getFacadeHelper().toString(getASTNode().getJavadoc());
      if (javadoc != null && content.startsWith(javadoc))
      {
        content = content.substring(javadoc.length());
      }
    }
    return content.trim();
  }
}

Back to the top