Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [bpel-dev] Simplify expression editors?

Hi

can anyone tell me the meaning of this method in ExpressionAssignCategory?

	/*
	 * (non-Javadoc)
	 * @see org.eclipse.bpel.ui.properties.ExpressionSection
	 * #createClient(org.eclipse.swt.widgets.Composite)
	 */
	@Override
	protected final void createClient(Composite parent) {
		// ugly HACK to make subclasses work
		//FlatFormLayout layout = new FlatFormLayout();
		//layout.marginHeight = layout.marginWidth = 0;
		//parent.setLayout(layout);
		FillLayout fillLayout = new FillLayout();
		fillLayout.marginHeight = fillLayout.marginWidth = 0;
		parent.setLayout(fillLayout);
		super.createClient(parent);
	}

I'm writing some subclasses and it looks like there are problems with
layout if I do not redefine this createClient method...

thanks
	Lorenzo

On 10/15/2012 03:41 PM, Bob Brodt wrote:
> Excellent - thanks Lorenzo.
> Bob
> 
> ----- Original Message -----
>> I've also created a bug
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=391913 to track this
>>
>> I should be able to push something to gerrit soon :)
>>
>> cheers
>> 	Lorenzo
>>
>> On 10/11/2012 11:55 AM, Bob Brodt wrote:
>>> Hi Lorenzo,
>>>
>>> Thanks for helping out! Please keep us informed about your progress
>>> and please don't hesitate to ask if you need help :)
>>>
>>> Cheers!
>>> Bob
>>>
>>> ----- Original Message -----
>>>> On 06/04/2012 03:55 PM, Vincent Zurczak wrote:
>>>>> Hi,
>>>>>
>>>>> Le 04/06/2012 15:47, Lorenzo Bettini a écrit :
>>>>>> Can we start trying to do something ourselves about that?  We
>>>>>> can
>>>>>> start with the previous extension point mechanism, is it still
>>>>>> there
>>>>>> somewhere?
>>>>>
>>>>> Sure. You can create a branch from the Git master branch.
>>>>> Make your modifications and propose them as a patch in the
>>>>> Bugzilla.
>>>>> Soon, there will be Gerrit for code reviews... that will be
>>>>> easier
>>>>> then.
>>>>>
>>>>> The original extension points are still available in the
>>>>> org.eclipse.bpel.ui and org.eclipse.bpel.common plug-ins (on the
>>>>> master
>>>>> branch).
>>>>
>>>> Hi
>>>>
>>>> I'd like to start working on bringing back the previous extension
>>>> point
>>>> mechanism (according to what we discussed); has gerrit been setup
>>>> for
>>>> bpel?
>>>>
>>>> cheers
>>>> 	Lorenzo
>>>>
>>>>
>>
>>
>> --
>> Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
>> ICQ# lbetto, 16080134     (GNU/Linux User # 158233)
>> HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
>> http://www.myspace.com/supertrouperabba
>> BLOGS: http://tronprog.blogspot.com
>>  http://longlivemusic.blogspot.com
>> http://www.gnu.org/software/src-highlite
>> http://www.gnu.org/software/gengetopt
>> http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net
>> _______________________________________________
>> bpel-dev mailing list
>> bpel-dev@xxxxxxxxxxx
>> https://dev.eclipse.org/mailman/listinfo/bpel-dev
>>
> _______________________________________________
> bpel-dev mailing list
> bpel-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/bpel-dev
> 


-- 
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134     (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com  http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Back to the top