Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 57699 invoked from network); 26 Oct 2007 10:19:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Oct 2007 10:19:00 -0000 Received: (qmail 1241 invoked by uid 500); 26 Oct 2007 10:18:44 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 1193 invoked by uid 500); 26 Oct 2007 10:18:44 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 1184 invoked by uid 99); 26 Oct 2007 10:18:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 03:18:44 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of irlyanov@gmail.com designates 66.249.82.233 as permitted sender) Received: from [66.249.82.233] (HELO wx-out-0506.google.com) (66.249.82.233) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Oct 2007 10:18:47 +0000 Received: by wx-out-0506.google.com with SMTP id s7so750586wxc for ; Fri, 26 Oct 2007 03:18:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=bgSasernJ6tfNssvlS+bBXWHIV7wc18gFzGAjU6CrS8=; b=Chaovr5j6mnotXa8LLAlL2FDHoTuO2FcXu006E6xuylHxoblCAgn+5qLdButqtE7fLy5PVJ67iTKs/0FGbUgUibfH5QwqjjnVOxkiRBcvoLARhLG+OKuT0JGVxzcCJ3g6A6470Z75fAN5yQTlEX6hqjOgk6e3RSmzyZxRmp+fkw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Kn9KRNdyj96aq7pohBgH3N9tP91FWQyQtii3PvOU9aZ5hNC6pshwn5DO2sJeocBNBXlgr/6ZKM7ecUHip+VPrhZfqfYOOODwtCXtIFlC9R76ovrO6Cz+cWNAxZJIJmV27cl01FrEIzfcsppgEi9TF8C+gF/DQ9aKCmITM23y+vE= Received: by 10.90.56.11 with SMTP id e11mr2326839aga.1193393905400; Fri, 26 Oct 2007 03:18:25 -0700 (PDT) Received: by 10.90.52.1 with HTTP; Fri, 26 Oct 2007 03:18:25 -0700 (PDT) Message-ID: Date: Fri, 26 Oct 2007 14:18:25 +0400 From: "Dmitry Irlyanov" To: dev@harmony.apache.org Subject: Re: [classlib][swing] javax.swing.JComponent is not supposed to be imported by awt In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_5931_16274243.1193393905383" References: X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_5931_16274243.1193393905383 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Yes, I understand, thank you. My notes is: 1) Please, tell me the advantages 2) I understand and in some sence agree (my disagreement is - there is a lot of other places to improve - but my note is non-constructive at all) UI do not loads with JComponent: Just UIManager and abstract ComponentUI. All the plubbable look and feels are called by reflection. Please, don't guilty UIs. 3) Why this classes directly used in swing? This is inconvinient decision for my opinion I think this is an area of improvement - because it makes harder to work with text in JComponents (the example I wrote above) but I cannot help with it now. But I think that search all the "swing" words in awt module will be good step to improve both modules. Thanks to you and Alexey for this idea. 2007/10/26, Maenkova, Evgeniya G : > > I told you what it suggested to be 'by design'. > > 1) reuse some swing logic regarding text component; > This approach has both advantages and disadvantages. The decision was do > it this way. > 2) don't use JComponent, as it automatically loads all swing, UIs, etc. > 3) for (2) there was TextUtils and TextKit, in particular. > > The idea is: don't use all swing (==JComponent) while you need only awt. > If you are working in this area now, you are welcome to make any > improvements. > > > >And (shame on me!) I cannot understand the 'heavy' and 'light' terms - > if > >this is a performance issue why we look here and doesn't look at event > >queue > >that unoptimised at all. > > Sure, we will look everywhere. > > Thanks, > Evgeniya > > -----Original Message----- > From: Dmitry Irlyanov [mailto:irlyanov@gmail.com] > Sent: Friday, October 26, 2007 1:15 PM > To: dev@harmony.apache.org > Subject: Re: [classlib][swing] javax.swing.JComponent is not supposed to > be imported by awt > > awt is independent from swing module (at least in theory) If the method > used > in swing only - what it does in awt module? > > The main question for me is: why the awt.text.TextUtils performs so > important role? > > As far as I remember this class makes more than it needed in awt. A lot > of > work that should be implemeted in swing for me. Why I should think about > TextKit (close friend of TextUtils) when I implement, say, html > processing > in JComponents? Furthermore, why I should implement it because the > TextKit > and TextUtils are implementation-specific classes and all the previous > (In > JEditorPane, say) implementations are hidden. What the reason of > harmony-specific way here? > > And (shame on me!) I cannot understand the 'heavy' and 'light' terms - > if > this is a performance issue why we look here and doesn't look at event > queue > that unoptimised at all. > > 2007/10/26, Maenkova, Evgeniya G : > > > > The point is: there is pretty big difference between references to > some > > classes with logic (like Document, Caret, etc) and references to > > JComponent. > > > > If you use JComponent in awt it increases startup time (as a pretty > big > > part of swing is loaded actually) and makes awt text component > heavier. > > > > 'Model' classes are pretty light. They don't load all swing. > > > > The idea was reuse in awt some swing logic, common for all text > > component, w/o loading swing per se. > > > > Thanks, > > Evgeniya > > > > > > > > -----Original Message----- > > From: Alexey Petrenko [mailto:alexey.a.petrenko@gmail.com] > > Sent: Friday, October 26, 2007 11:28 AM > > To: dev@harmony.apache.org > > Subject: Re: [classlib][swing] javax.swing.JComponent is not supposed > to > > be imported by awt > > > > As far as I remember we have one implementation of text processing > > routines for awt and swing. That's why awt code could reference swing > > classes. > > > > I'll take a look... > > > > SY, Alexey > > > > 2007/10/26, Alexei Fedotov : > > > Hello, > > > > > > I'm currently looking through the swing and awt code to find out > what > > > should be done to make drag and drop work. Today I find out that the > > > class org.apache.harmony.awt.text.TextUtils contains nearly the same > > > functionality as javax.swing.TransferHandler [2]. Thanks to Evgeniya > > > Maenkova! She explained me that AWT cannot reuse > > > javax.swing.TransferHandler due to referenced javax.swing.JComponent > > > which is heavy class. I have looked through the dev@ list and > couldn't > > > find that this core principle of our client API was referenced here > > > before. > > > > > > Finally I've prepared a patch to remove another existing reference > to > > > JComponent from org.apache.harmony.awt.text.TextUtils [1]. Could > > > anyone review and commit the patch? > > > > > > Thanks! > > > > > > [1] https://issues.apache.org/jira/browse/HARMONY-5023 > > > [2] > > > org.apache.harmony.awt.text.TextUtils: > > > public static final boolean importData(final TextKit textKit, > > > final Transferable t) { > > > > > > if (t == null) { > > > return false; > > > } > > > DataFlavor[] flavors = t.getTransferDataFlavors(); > > > DataFlavor flavor = null; > > > for (DataFlavor element : flavors) { > > > flavor = element; > > > if > > (String.class.isAssignableFrom(flavor.getRepresentationClass())) > > > { > > > break; > > > } > > > flavor = null; > > > } > > > if (flavor != null) { > > > try { > > > String text = (String) t.getTransferData(flavor); > > > textKit.replaceSelectedText(text); > > > return true; > > > } catch (UnsupportedFlavorException e) { > > > return false; > > > } catch (IOException e) { > > > return false; > > > } > > > } > > > return false; > > > } > > > > > > javax.swing.TransferHandler: > > > public boolean importData(final JComponent c, > > > final Transferable t) { > > > PropertyDescriptor descriptor = getPropertyDescriptor(c); > > > if (descriptor == null) { > > > return false; > > > } > > > Class propertyType = descriptor.getPropertyType(); > > > DataFlavor flavor = getPrefferedFlavor(t, propertyType); > > > if (flavor == null) { > > > return false; > > > } > > > > > > try { > > > Object value = t.getTransferData(flavor); > > > Method writer = descriptor.getWriteMethod(); > > > writer.invoke(c, new Object[]{value}); > > > return true; > > > } catch (UnsupportedFlavorException e) { > > > } catch (IOException e) { > > > } catch (InvocationTargetException e) { > > > } catch (IllegalAccessException e) { > > > } > > > return false; > > > } > > > > > > > > > > > > > > > -- > > > With best regards, > > > Alexei, > > > ESSD, Intel > > > > > -------------------------------------------------------------------- > > Closed Joint Stock Company Intel A/O > > Registered legal address: 125252, Moscow, Russian Federation, > > Chapayevsky Per, 14. > > > > This e-mail and any attachments may contain confidential material for > > the sole use of the intended recipient(s). Any review or distribution > > by others is strictly prohibited. If you are not the intended > > recipient, please contact the sender and delete all copies. > > > > > > -- > _______________ > With Best Regards, > Irlyanov Dmitry > -------------------------------------------------------------------- > Closed Joint Stock Company Intel A/O > Registered legal address: 125252, Moscow, Russian Federation, > Chapayevsky Per, 14. > > This e-mail and any attachments may contain confidential material for > the sole use of the intended recipient(s). Any review or distribution > by others is strictly prohibited. If you are not the intended > recipient, please contact the sender and delete all copies. > -- _______________ With Best Regards, Irlyanov Dmitry ------=_Part_5931_16274243.1193393905383--