If you are not sure if the website you would like to visit is secure, you can verify it here. Enter the website address of the page and see parts of its content and the thumbnail images on this site. None (if any) dangerous scripts on the referenced page will be executed. Additionally, if the selected site contains subpages, you can verify it (review) in batches containing 5 pages.
favicon.ico: ckulla.wordpress.com - Christoph's Blog.

site address: ckulla.wordpress.com redirected to: ckulla.wordpress.com

site title: Christoph's Blog

Our opinion (on Tuesday 25 August 2026 21:55:20 UTC):

GREEN status (no comments) - no comments
After content analysis of this website we propose the following hashtags:



Meta tags:

Headings (most frequently used words):

christoph, in, blog, monitor, workspace, errors, the, dock, hover, support, xtext, kulla, recent, posts, twitter, updates,

Text of the page (most frequently used words):
the (61), and (18), this (16), you (16), for (15), hover (13), with (11), xtext (11), your (11), #christoph (9), can (9), java (7), work (7), any (7), from (7), hovers (7), language (7), element (7), get (6), like (6), comments (6), implementation (6), jdt (6), well (6), documentation (6), com (5), blog (5), have (5), support (5), errors (5), dock (5), just (5), own (5), references (5), mwe2 (5), reference (5), name (4), required (4), comment (4), content (4), workspace (4), kulla (4), configuration (4), mouse (4), different (4), languages (4), may (4), look (4), will (4), see (4), default (4), show (4), wordpress (3), view (3), ckulla (3), software (3), model (3), eclipse (3), please (3), free (3), that (3), ieobjectdocumentationprovider (3), out (3), box (3), quick (3), which (3), code (3), move (3), type (3), implemented (3), display (3), step (3), interface (3), was (3), closer (3), are (3), doing (3), github (3), errormonitor (3), number (3), started (2), site (2), bar (2), log (2), sign (2), subscribed (2), subscribe (2), already (2), now (2), monitor (2), works (2), development (2), has (2), posted (2), 2011 (2), written (2), would (2), guys (2), feel (2), itexthover (2), supports (2), formatting (2), via (2), html (2), guice (2), use (2), supported (2), known (2), should (2), fixes (2), make (2), available (2), mechanism (2), over (2), meta (2), file (2), contain (2), each (2), sven (2), ieobjecthoverprovider (2), dispatchingeobjecttexthover (2), doc (2), appear (2), means (2), leading (2), multi (2), line (2), plug (2), useful (2), cross (2), declaration (2), there (2), want (2), when (2), time (2), all (2), but (2), some (2), sandbox (2), idea (2), not (2), problems (2), their (2), could (2), design, website, email, write, loading, collapse, manage, subscriptions, reader, report, privacy, account, tweets, twitter, updates, recent, posts, engineer, automotive, domain, robert, bosch, car, multimedia, focusing, architecture, methodology, vehicle, infotainment, systems, passion, driven, uncategorized, february, finally, thank, team, supporting, applying, contribution, enjoyed, add, happy, hear, don, interfaces, provide, change, rich, still, allows, where, appropriate, javadoc, summary, also, added, fix, providing, again, additional, expect, same, way, upcoming, xtend2, looking, forward, original, luckily, duplication, completion, experience, looks, across, models, elements, other, what, does, mean, therefore, editor, types, utilizing, iglobalserviceprovider, metamodel, register, shared, module, used, javatypes, multiple, assist, defaulteobjecthoverprovider, browser, widget, displayed, correct, include, images, adds, front, actual, retrieves, multilinecommentdocumentationprovider, returned, string, note, contained, non, without, user, generating, documents, location, referenced, declared, eobject, abstracteobjecthover, whenever, procedure, example, here, special, these, displays, text, style, syntax, replace, adopt, editing, action, variable, introduction, starting, years, ago, recall, statement, efftinge, saying, great, coming, level, really, fantastic, job, something, missing, offers, topic, had, chance, contribute, back, noticed, latest, milestones, let, take, april, leave, https, tree, master, source, http, update, give, try, install, especially, huge, refactoring, having, visible, how, know, hasn, done, check, remaining, many, applications, decorate, icon, task, windows, nowadays, those, icons, unread, emails, articles, calendar, events, ide, brought, dig, through, came, small, call, after, installing,


Text of the page (random words):
christoph s blog christoph s blog monitor workspace errors in the dock with 3 comments many applications decorate their icon in the dock task bar on windows with a number nowadays those icons show the number of unread emails articles calendar events and so on but their is a well known ide which is not doing so this brought me to the idea eclipse could show the number of errors in the workspace i dig through the problems view code and came up with a small plug in which i call the errormonitor after installing it your dock could look like this this is especially useful when doing some huge refactoring and not having the problems view visible all the time how do you know your workspace hasn t any errors and you are done you can just look at the dock now and check if there are any errors remaining if you like that idea give it a try and install it from http ckulla github com sandbox errormonitor update the source is available on github as well https github com ckulla sandbox tree master errormonitor please feel free to leave any comments written by christoph kulla april 15 2011 at 6 23 pm posted in eclipse hover support in xtext 2 0 with 9 comments from the time i was starting with xtext 2 3 years ago i recall a statement from sven efftinge saying i want a jdt for all my languages well xtext is great and it is coming closer and closer to the jdt level the guys are really doing a fantastic job but something i was missing was the support for hovers like the jdt offers for java doc comments so i started to work on this topic and had the chance to contribute my implementation back to xtext some of you may have already noticed it in the latest milestones of xtext 2 0 let s take a closer look at it introduction when editing a mwe2 file with xtext 2 0 you can see the hovers in action just move your mouse over a reference to a mwe2 variable and a hover will show up i use mwe2 as an example language here there is no special configuration in mwe2 to show these hovers it should work for any language out of the box the hover displays the text of the leading multi line comment java style if you want to display different content or your language may have a different comment syntax just replace the default implementation with your own and adopt the guice configuration the hover will appear whenever you move your mouse on a cross reference or on a declaration of an element it is a 3 step procedure get the element on the mouse hover location if it is a cross reference get the referenced element if it is a name of a declaration get the declared element element means an eobject this is implemented in abstracteobjecthover get the documentation for the element in step 1 see interface ieobjectdocumentationprovider the default implementation retrieves the documentation from the leading multi line comment see multilinecommentdocumentationprovider the returned documentation is of type string please note that the ieobjectdocumentationprovider interface is contained in xtext s non ui plug in it may be useful without the user interface e g generating documents from your model display the documentation of step 2 see dispatchingeobjecttexthover and ieobjecthoverprovider and defaulteobjecthoverprovider the default hover implementation is implemented by a browser widget this means the documentation can contain any html formatting and it will be displayed correct e g you can include images the default implementation adds the type name and the element name in front of the actual documentation the hover will appear in content assist as well support of multiple languages xtext supports references across different languages or meta models a file may can contain references to elements of other languages what does this mean for hovers well each language can have it s own type of hover therefore an editor has to support different types of hovers this is supported by utilizing the iglobalserviceprovider implemented by sven each language metamodel can register it s own ieobjecthoverprovider via a shared module look at dispatchingeobjecttexthover for reference this mechanism is used to display java doc hovers for references to the javatypes meta model java references you can experience this mechanism in mwe2 just move your mouse over a java reference it looks like this is the original jdt hover luckily no code duplication is required to make it available code completion works as well i expect this to work the same way for the upcoming xtend2 i m looking forward to it quick fixes i ve also added a quick fix hover as known from jdt it should work out of the box for any language which is providing quick fixes again no additional configuration is required to make this work for your language summary that s it you get hovers for free with xtext 2 0 you don t have to work with the itexthover interfaces you can just provide your own ieobjectdocumentationprovider to change the hover content it supports rich formatting via html the guice configuration still allows you to use your own itexthover implementation where it is appropriate the jdt javadoc hover is supported out of the box for java references please feel free to add any comments i would be happy to hear from you finally i would like to thank the xtext team for supporting me and applying my contribution i enjoyed to work with you guys written by christoph kulla february 6 2011 at 1 06 pm posted in uncategorized christoph kulla christoph kulla works as a software engineer in the automotive domain robert bosch car multimedia he is focusing on software architecture and development methodology of in vehicle infotainment systems christoph has a passion for model driven software development java and eclipse recent posts monitor workspace errors in the dock hover support in xtext 2 0 twitter updates tweets by ckulla blog at wordpress com subscribe subscribed christoph s blog sign me up already have a wordpress com account log in now privacy christoph s blog subscribe subscribed sign up log in report this content view site in reader manage subscriptions collapse this bar loading comments write a comment email required name required website design a site like this with wordpress com get started
Thumbnail images (randomly selected): * Images may be subject to copyright.GREEN status (no comments)
  • Unknown s avatar

Verified site has: 12 subpage(s). Do you want to verify them? Verify pages:

1-5 6-10 11-12


The site also has references to the 2 subdomain(s)

  wordpress.com  Verify   subscribe.wordpress.com  Verify


The site also has 3 references to external domain(s).

 ckulla.github.com  Verify  github.com  Verify  twitter.com  Verify


Top 50 hastags from of all verified websites.

Supplementary Information (add-on for SEO geeks)*- See more on header.verify-www.com

Header

HTTP/1.1 301 Moved Permanently
Server nginx
Date Tue, 25 Aug 2026 21:55:19 GMT
Content-Type text/html
Content-Length 162
Connection keep-alive
Location htt????/ckulla.wordpress.com/
Alt-Svc clear
Server-Timing a8c-cdn, dc;desc=ams, cache;desc=BYPASS;dur=1.0
HTTP/2 200
server nginx
date Tue, 25 Aug 2026 21:55:20 GMT
content-type text/html; charset=UTF-8
vary Accept-Encoding
x-hacker Want root? Visit join.a8c.com/hacker and mention this header.
host-header WordPress.com
link <htt????/public-api.wordpress.com/wp-json/?rest_route=/sites/ckulla.wordpress.com>; rel= htt????/api.w.org/
vary accept, content-type, cookie
link <htt????/wp.me/BXUR>; rel=shortlink
content-encoding gzip
x-ac 4.ams _dfw MISS
alt-svc clear
strict-transport-security max-age=31536000
server-timing a8c-cdn, dc;desc=ams, cache;desc=MISS;dur=440.0

Meta Tags

title="Christoph's Blog"
http-equiv="Content-Type" content="text/html; charset=UTF-8"
name="robots" content="max-image-preview:large"
name="generator" content="WordPress.com"
property="og:type" content="website"
property="og:title" content="Christoph's Blog"
property="og:url" content="htt????/ckulla.wordpress.com/"
property="og:site_name" content="Christoph's Blog"
property="og:image" content="htt????/s0.wp.com/i/blank.jpg?m=1383295312i"
property="og:image:width" content="200"
property="og:image:height" content="200"
property="og:image:alt" content=""
property="og:locale" content="en_US"
property="fb:app_id" content="249643311490"
id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT-0" data-custom-props='{"logged_in":"0","wptheme":"pub\/journalist","wptheme_is_block":"0"}'

Load Info

page size91745
load time (s)0.514305
redirect count1
speed download47161
server IP 192.0.78.12
* all occurrences of the string "http://" have been changed to "htt???/"