X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/PHPStatusConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/PHPStatusConstants.java index 48a007c..ef07e95 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/PHPStatusConstants.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/PHPStatusConstants.java @@ -5,24 +5,24 @@ package net.sourceforge.phpdt.internal.ui; /** - * Defines status codes relevant to the PHP UI plug-in. When a - * Core exception is thrown, it contain a status object describing - * the cause of the exception. The status objects originating from the - * PHP UI plug-in use the codes defined in this interface. - */ + * Defines status codes relevant to the PHP UI plug-in. When a Core exception is + * thrown, it contain a status object describing the cause of the exception. The + * status objects originating from the PHP UI plug-in use the codes defined in + * this interface. + */ public class PHPStatusConstants { - + // Prevent instantiation private PHPStatusConstants() { } /** Status code describing an internal error */ - public static final int INTERNAL_ERROR= 1; - + public static final int INTERNAL_ERROR = 1; + /** - * Status constant indicating that an exception occured on - * storing or loading templates. + * Status constant indicating that an exception occured on storing or + * loading templates. */ public static final int TEMPLATE_IO_EXCEPTION = 2; - + }