Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] CDescriptor.java modified the visibility of constants

These three changes are related, but the diffs were a little long, so I
broke them up.

***
cvs diff -N -u "ChangeLog"
  Index: ChangeLog
  ===================================================================
  RCS file: /home/tools/org.eclipse.cdt.core/ChangeLog,v
  retrieving revision 1.22
  diff -u -r1.22 ChangeLog
  --- ChangeLog	7 Nov 2002 03:20:16 -0000	1.22
  +++ ChangeLog	8 Nov 2002 20:11:32 -0000
  @@ -1,3 +1,17 @@
  +2002-11-08 Judy N. Green
  +	* src/org/eclipse/cdt/internal/core/COwner.java
  +	fixed check in constructor to throw error when ownerID is invalid
  +	
  +	* src/org/eclipse/cdt/internal/core/CDescriptor.java
  +		made all constants static and changed visibility of
DESCRIPTION_FILE_NAME
  +		to package to be used by tge CDescriptorManager 
  +		
  +	* src/org/eclipse/cdt/internal/core/CDescriptorManager.java
  +	 Added to event in order to catch when the .cdtprject file is
deleted.
  +	 delete reference to the CDT project Descriptor when a missing file
is detected.
  +	 
  +	 Added new public method removeExistingCdtProjectFile(IProject
project), required when converting a project.
  +
   2002-11-06 Alain Magloire
   
   	* src/org/eclipse/cdt/ErrorParserManager.java (parse):

cvs diff -N -u "CDescriptor.java"
  Index: CDescriptor.java
  ===================================================================
  RCS file:
/home/tools/org.eclipse.cdt.core/src/org/eclipse/cdt/internal/core/CDescript
or.java,v
  retrieving revision 1.4
  diff -u -r1.4 CDescriptor.java
  --- CDescriptor.java	4 Oct 2002 18:11:18 -0000	1.4
  +++ CDescriptor.java	8 Nov 2002 20:05:44 -0000
  @@ -50,10 +50,10 @@
   	private HashMap extMap = new HashMap(4);
   	private HashMap extInfoMap = new HashMap(4);
   		
  -	private final String DESCRIPTION_FILE_NAME = ".cdtproject";
  -	private final String PROJECT_DESCRIPTION = "cdtproject";
  -	private final String PROJECT_EXTENSION = "extension";
  -	private final String PROJECT_EXTENSION_ATTRIBUTE = "attribute";
  +	final static String DESCRIPTION_FILE_NAME = ".cdtproject";
  +	private final static String PROJECT_DESCRIPTION = "cdtproject";
  +	private final static String PROJECT_EXTENSION = "extension";
  +	private final static String PROJECT_EXTENSION_ATTRIBUTE =
"attribute";
   
   	private boolean fDirty;


¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨
Judy N. Green               Software Engineer
QNX Software Systems Ltd.   www.qnx.com
¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨¨°ºo§oº°¨¨¨


Back to the top