1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

toString() added

This commit is contained in:
Andrew Gvozdev 2010-05-03 20:51:15 +00:00
parent 41d8e7d002
commit 89f528fac7

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2007 Intel Corporation and others.
* Copyright (c) 2007, 2010 Intel 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
@ -170,4 +170,13 @@ public abstract class CDataProxy implements ICSettingObject {
return projDes.getProject();
}
/**
* This method is intended for debugging purpose only.
*/
@SuppressWarnings("nls")
@Override
public String toString() {
return "name=["+getName()+"], id=["+getId()+"]";
}
}