dcb38a5b29f3af7c713a75146098cc0a7edf0275
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / jdom / CompilationUnit.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.core.jdom;
12
13 import net.sourceforge.phpdt.internal.compiler.env.ICompilationUnit;
14
15 /**
16  * Implements a very simple version of the ICompilationUnit.
17  *
18  * <p>Please do not use outside of jdom.</p>
19  */
20 public class CompilationUnit implements ICompilationUnit {
21         protected char[] fContents;
22         protected char[] fFileName;
23         protected char[] fMainTypeName;
24 public CompilationUnit(char[] contents, char[] filename) {
25         fContents = contents;
26         fFileName = filename;
27
28         String file = new String(filename);
29         int start = file.lastIndexOf("/") + 1; //$NON-NLS-1$
30         if (start == 0 || start < file.lastIndexOf("\\")) //$NON-NLS-1$
31                 start = file.lastIndexOf("\\") + 1; //$NON-NLS-1$
32
33         int end = file.lastIndexOf("."); //$NON-NLS-1$
34         if (end == -1)
35                 end = file.length();
36
37         fMainTypeName = file.substring(start, end).toCharArray();
38 }
39 public char[] getContents() {
40         return fContents;
41 }
42 public char[] getFileName() {
43         return fFileName;
44 }
45 public char[] getMainTypeName() {
46         return fMainTypeName;
47 }
48 public char[][] getPackageName() {
49         return null;
50 }
51 public String toString() {
52         return "CompilationUnit[" + new String(fFileName) + "]";  //$NON-NLS-2$ //$NON-NLS-1$
53 }
54 }