Padmaja Vedula | 6 Apr 2005 15:42
Picon

issue with compilePattern in InstructionFinder class

hello,

We are facing an issue with the pattern search in the
InstructionFinder class. The compilePattern works fine with no
defaultLocale set and also with most Locales set. But in the case of
Turkish locale because of the locale rules the pattern conversion to
regular string expression produces some locale specific characters.
This happens when the pattern is converted to lower case in the
compilePattern method.

Is it possible that this lower case conversion can be done by using
String.toLowerCase(Locale.US).  That might solve the problem of broken
locale issues.

thanks,
PV
Piotr Papała | 7 Apr 2005 01:50
Picon

Is BCEL working with Java 1.5? Metrics tools?

Hello, 

I am trying to develop some code metrics tool using BCEL, 
so I have a couple simple question about BCEL. 

1) Is BCEL working with Java 1.5 properly? What about new 
   code structures in Java 1.5? 
   I have tested BCEL for some simple code with new syntax in Java 1.5, 
   but I am not sure that BCEL will work fine for all new syntax. 

2) Did you try to write code metrics tool using BCEL?
   I would like to count some simple metrics and CK code metrics. 
   That would be great if you have any comments about that. 

   I have also tried Metrics tool (metrics.sf.net) which is a very good 
   tool, but it has to work in Eclipse IDE (as a plugin). I am searching 
   for good metric tool that could be run without Eclipse, especialy 
   using Ant tool. 

I am gratfull for any help from you. Please, feel free to write to me. 

Best regards,
Peter
Bernhard K. Aichernig | 12 Apr 2005 12:01
Favicon

Call for Papers - ICTAC05 (Hanoi)

Call for Papers - ICTAC05

INTERNATIONAL COLLOQUIUM ON
THEORETICAL ASPECTS OF  COMPUTING

Hanoi, Vietnam - 17--21 October, 2005
http://www.iist.unu.edu/ictac05
=====================

BACKGROUND AND OBJECTIVES

ICTAC is an International Colloquium on Theoretical Aspects of
Computing founded by the International Institute for Software
Technology of the United Nations University (UNU-IIST). The aim of the
colloquium is to bring together practitioners and researchers from
academia, industry and government to present research results, and
exchange experience, ideas, and solutions for their problems in
theoretical aspects of computing. We believe that this will help
developing countries to strengthen their research, teaching and
development in computer science and engineering, improve the links
between developing countries and developed countries, and establish
collaboration in research and education. The first ICTAC (ICTAC'04) was
held in Guiyang, China.

ICTAC'05 will have a technical program for five days
including two days for tutorials and three days for a conference, and a
training school for 5 days.

The topics of the conference include, but are not limited to:

(Continue reading)

Dean Hiller | 24 Apr 2005 17:24

ProxyCreator class is missing

ProxyCreator Links seem to be dead, and I can't find the class.  Is
there a way to create a class easily like jdk's Proxy class except
allowing me to subclass as well as implement many interfaces.  I assumed
ProxyCreator does this?  Anyone know what happened to it?

Thanks,

dean

--------------------------------------------------------
The information contained in this e-mail and any attachments hereto are for the exclusive use of the
addressee and may contain confidential, privileged and nondisclosable information. If the recipient
of this e-mail is not the addressee, or a person responsible for delivering this e-mail to the addressee,
such recipient is strictly prohibited from reading, printing, photocopying, distributing or
otherwise using this e-mail or any attachments hereto in any way. If the recipient has received this
e-mail in error, please send return e-mail immediately notifying us of your receipt of this e-mail and
delete the e-mail from your inbox. Thank you.
Dean Hiller | 24 Apr 2005 17:34

Proxy.java(Is there a better one out there)

The jdk has the Proxy class which is great for dynamically creating a
class that implements an interface(or interfaces).  It does not however
have a Proxy class that subclasses a class as well as implementing an
interface(or interfaces).  It looks as though one could be created using
the bcel.  Does anyone know of something out there that could do this?

Thanks,

dean

--------------------------------------------------------
The information contained in this e-mail and any attachments hereto are for the exclusive use of the
addressee and may contain confidential, privileged and nondisclosable information. If the recipient
of this e-mail is not the addressee, or a person responsible for delivering this e-mail to the addressee,
such recipient is strictly prohibited from reading, printing, photocopying, distributing or
otherwise using this e-mail or any attachments hereto in any way. If the recipient has received this
e-mail in error, please send return e-mail immediately notifying us of your receipt of this e-mail and
delete the e-mail from your inbox. Thank you.
Vincent Marquez | 26 Apr 2005 09:54

Moving methods from one class to another?

I'm wondering if there is an easy way to move methods from one class to 
another?  The idea was to be able to copy all methods from one class to 
other classes, programatically.  The problem is of course the constant 
pool.  I was hoping there might be an easier way to do this, instead of 
having to find what constants the original IndexedInstructions were 
refrencing, and finding out where they are in the new class.   If anyone 
has any good ideas on how to do this an easy way, it would be 
appreciated.  Thank you for your time.

--Vince
Andrew Huntwork | 29 Apr 2005 04:17

Re: Moving methods from one class to another?

Hi Vincent,

I thought i'd just chime in and say that your approach sounds reasonable 
to me.  i've written almost the exact code you're talking about to do a 
method inliner, and i couldn't think of anything better at the time.

Vincent Marquez wrote:
> I'm wondering if there is an easy way to move methods from one class to 
> another?  The idea was to be able to copy all methods from one class to 
> other classes, programatically.  The problem is of course the constant 
> pool.  I was hoping there might be an easier way to do this, instead of 
> having to find what constants the original IndexedInstructions were 
> refrencing, and finding out where they are in the new class.   If anyone 
> has any good ideas on how to do this an easy way, it would be 
> appreciated.  Thank you for your time.
> 
> --Vince
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: bcel-user-unsubscribe <at> jakarta.apache.org
> For additional commands, e-mail: bcel-user-help <at> jakarta.apache.org
> 

Gmane