1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 * Port to the D programming language: 11 * Frank Benoit <benoit@tionex.de> 12 *******************************************************************************/ 13 module org.eclipse.swt.custom.SashFormData; 14 15 import java.lang.all; 16 17 class SashFormData { 18 19 long weight; 20 21 String getName () { 22 String str = this.classinfo.name; 23 auto index = str.lastIndexOf ('.'); 24 if (index is -1) return str; 25 return str[ index + 1 .. $ ]; 26 } 27 28 /** 29 * Returns a string containing a concise, human-readable 30 * description of the receiver. 31 * 32 * @return a string representation of the event 33 */ 34 public override String toString () { 35 return getName()~" {weight="~String_valueOf(weight)~"}"; //$NON-NLS-2$ 36 } 37 }