Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Gunnar Wagenknecht

Revision as of 09:51, 12 September 2008 by Gunnar.wagenknecht.org (Talk | contribs)

/**
 * Copyright (c) 2008 Gunnar Wagenknecht.
 * 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
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Gunnar Wagenknecht - initial API and implementation
 */
 
/**
 * Gunnar is a software engineer who loves server and application architectures
 * especially those involving Equinox/OSGi.
 * <p>
 * In his primary role at AGETO he is thrilled to work on open source software,
 * emerging platforms and technologies and to help companies understand Eclipse
 * and OSGi and execute on their business objectives in an open source context.
 * He is a very active member of the Eclipse Community and a prolific
 * contributor with many years of experience on numerous Eclipse projects;
 * Gunnar is also a member of the Technology PMC which he represents on the
 * Eclipse Architecture Council.
 * </p>
 * <p>
 * Apart from Eclipse he also loves chatting about fishing, diving and family
 * over a good beer or a glass of dry, barrel aged red wine.
 * </p>
 */
public final class GunnarWagenknecht {
 
	public static String getBlogAddress() {
		return "http://wagenknecht.org/blog/";
	}
 
	public static String getEmailAddress() {
		return String.format("%s@%s", "gunnar", "wagenknecht.org");
	}
 
	public static void main(final String[] args) {
		System.out.printf("Email: %s", getEmailAddress());
		System.out.println();
		System.out.printf(" Blog: %s", getBlogAddress());
		System.out.println();
	}
 
	private GunnarWagenknecht() {
		// empty
	}
}

Back to the top