mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Remove author javadoc keyword
This commit is contained in:
parent
c15f8b149f
commit
4be7410664
7 changed files with 10 additions and 40 deletions
|
@ -8,12 +8,6 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIObject;
|
|||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
|
||||
/**
|
||||
* @author alain
|
||||
*
|
||||
* To change this generated comment edit the template variable "typecomment":
|
||||
* Window>Preferences>Java>Templates.
|
||||
* To enable and disable the creation of type comments go to
|
||||
* Window>Preferences>Java>Code Generation.
|
||||
*/
|
||||
public class CObject implements ICDIObject {
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@ public class CSession implements ICDISession, ICDISessionObject {
|
|||
session.postCommand(dir);
|
||||
dir.getMIInfo();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -11,12 +11,6 @@ import org.eclipse.cdt.debug.mi.core.event.MIThreadExitEvent;
|
|||
import org.eclipse.cdt.debug.mi.core.event.MIVarChangedEvent;
|
||||
|
||||
/**
|
||||
* @author alain
|
||||
*
|
||||
* To change this generated comment edit the template variable "typecomment":
|
||||
* Window>Preferences>Java>Templates.
|
||||
* To enable and disable the creation of type comments go to
|
||||
* Window>Preferences>Java>Code Generation.
|
||||
*/
|
||||
public class DestroyedEvent implements ICDIDestroyedEvent {
|
||||
|
||||
|
|
|
@ -9,12 +9,6 @@ import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
|||
import org.eclipse.cdt.debug.core.cdi.ICDISessionObject;
|
||||
|
||||
/**
|
||||
* @author alain
|
||||
*
|
||||
* To change this generated comment edit the template variable "typecomment":
|
||||
* Window>Preferences>Java>Templates.
|
||||
* To enable and disable the creation of type comments go to
|
||||
* Window>Preferences>Java>Code Generation.
|
||||
*/
|
||||
public class SessionObject implements ICDISessionObject {
|
||||
|
||||
|
|
|
@ -9,12 +9,6 @@ import org.eclipse.cdt.debug.core.cdi.ICDISignal;
|
|||
import org.eclipse.cdt.debug.mi.core.event.MISignalEvent;
|
||||
|
||||
/**
|
||||
* @author alain
|
||||
*
|
||||
* To change this generated comment edit the template variable "typecomment":
|
||||
* Window>Preferences>Java>Templates.
|
||||
* To enable and disable the creation of type comments go to
|
||||
* Window>Preferences>Java>Code Generation.
|
||||
*/
|
||||
public class Signal extends SessionObject implements ICDISignal {
|
||||
|
||||
|
|
|
@ -10,12 +10,6 @@ import org.eclipse.cdt.debug.core.cdi.ICDISignal;
|
|||
import org.eclipse.cdt.debug.core.cdi.ICDISignalManager;
|
||||
|
||||
/**
|
||||
* @author alain
|
||||
*
|
||||
* To change this generated comment edit the template variable "typecomment":
|
||||
* Window>Preferences>Java>Templates.
|
||||
* To enable and disable the creation of type comments go to
|
||||
* Window>Preferences>Java>Code Generation.
|
||||
*/
|
||||
public class SignalManager extends SessionObject implements ICDISignalManager {
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
mi.postCommand(dir);
|
||||
dir.getMIInfo();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
MIGDBShowDirectoriesInfo info = dir.getMIGDBShowDirectoriesInfo();
|
||||
return info.getDirectories();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
mi.postCommand(solib);
|
||||
solib.getMIInfo();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -85,7 +85,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
MIGDBShowSolibSearchPathInfo info = dir.getMIGDBShowSolibSearchPathInfo();
|
||||
return info.getDirectories();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
mi.postCommand(solib);
|
||||
solib.getMIInfo();
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -118,7 +118,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
}
|
||||
return instructions;
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -149,7 +149,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
}
|
||||
return instructions;
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -170,7 +170,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
}
|
||||
return mixed;
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -201,7 +201,7 @@ public class SourceManager extends SessionObject implements ICDISourceManager {
|
|||
}
|
||||
return mixed;
|
||||
} catch (MIException e) {
|
||||
throw new CDIException(e.getMessage());
|
||||
throw new MI2CDIException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue