Added constants from David Foerster to phpsyntax.xml file
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / phpdoc / PHPDocUtil.java
index 71db7ae..900d535 100644 (file)
@@ -20,10 +20,10 @@ public class PHPDocUtil {
   public static void appendPHPDoc(StringBuffer hoverInfoBuffer, String filename, PHPIdentifierLocation location) {
     FileReader phpFileReader;
     hoverInfoBuffer.append(location.toString());
-    hoverInfoBuffer.append(" - \n");
+    hoverInfoBuffer.append(" - <b>");
     try {
                        hoverInfoBuffer.append( getUsage(filename, location) );
-                       hoverInfoBuffer.append('\n');
+                       hoverInfoBuffer.append("</b><br>");
 
       //       read the phpdoc for the function
       if (location.getPHPDocOffset() >= 0) {
@@ -33,7 +33,7 @@ public class PHPDocUtil {
         phpFileReader.read(phpDocDeclarationCharArray, 0, location.getPHPDocLength());
         PHPDocCharArrayCommentReader phpdocConverter = new PHPDocCharArrayCommentReader(phpDocDeclarationCharArray);
         hoverInfoBuffer.append(phpdocConverter.getString());
-        hoverInfoBuffer.append('\n');
+        hoverInfoBuffer.append("<br><br>");
         phpFileReader.close();
       }