comp.lang.java.help
  Home FAQ Contact Sign in
comp.lang.java.help only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.java.help Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Re: all about java threads         


Author: Andrew Thompson
Date: Jul 12, 2008 19:29

I posted a copy of the this to the spam you sent to
c.l.j.help. I did not realize at the time that you
were a multi-posting*, plagiarist spammer.

On Jul 13, 11:46 am, pavan gmail.com> wrote:

This seems to be directly the same text as seen in
<http://www.javaworld.com/javaworld/jw-04-1996/jw-04-threads.html>
by Donald G. Drake.

Is JavaWorld quoting your blog?

Oh wait. That article is dated January '96.
Did they even have blogs then?

* X-post to current multi-posted groups, with f-u
to c.l.j.gui only.

--
Andrew T.
no comments
  java threads notes         


Author: pavan
Date: Jul 12, 2008 18:46

Show full article (1.05Kb)
1 Comment
  Tons Of Ebooks: New CoolDog Ebooks Blog Update!         


Author: BigSkipster
Date: Jul 12, 2008 12:29

New CoolDog Ebooks blog update. http://ebook-of-ebooks.blogspot.com
My blog has been updated and expanded to double the size as before so
check it out! I sure you find what you were looking for.

Here’s All The New Categories Listed:

29 Childrens Animal Encyclopedias | Academics | Actual Tests Cisco &
Others | Ajax | Algorithm | Animation | Anti-Spam | Apple & OSX |
Artificial Intelligence | Asbestos Cancer & Mesthelioma | ASP |
Assembly...
Show full article (2.57Kb)
no comments
  beans binding library         


Author: thufir
Date: Jul 12, 2008 01:21

I'm getting following compile error:

thufir@arrakis:~/bcit3621/lab2/src$
thufir@arrakis:~/bcit3621/lab2/src$ javac a00720398/view/Lab2Frame.java
./a00720398/util/LabelSliderText.java:57: package
org.jdesktop.beansbinding does not exist
private org.jdesktop.beansbinding.BindingGroup bindingGroup;

Apparently the solution is to take the beans binding library, copy it
under my main project directory and make a library wrapper.

How do I copy the beans binding library to the main project from Netbeans?

thanks,

Thufir
3 Comments
  getting a JSlider to expand         


Author: thufir
Date: Jul 12, 2008 01:18

red, green and blue are instance of LabelSliderText, which extends
JPanel. How can I get the three "rows", beans, to line up vertically?

I suppose I could pass in:

"red "
"green"
"blue "

so that the spacing matches up? It's "ok" to pass strings? Hmm, maybe
it would make more sense to pass a Color instance...but maybe that's
overkill.

Also, I can't figure out how to make the JSlider expand horizontally when
the JFrame is enlarged. The surrounding JPane, "green " for instance,
does seem to expand.

thufir@arrakis:~/bcit3621$
thufir@arrakis:~/bcit3621$ cat lab2/src/a00720398/util/ColorSelector.java
package a00720398.util;

public class ColorSelector extends javax.swing.JPanel {
Show full article (1.92Kb)
4 Comments