| Projects on Google Code | Results 1 - 10 of 98 |
A set of reflection utilities and miscellaneous utilities related to working with classes and their fields with no dependencies which is compatible with java 1.5 and generics.
==Features:==
These are built to be compatible with [http://commons.apache.org/beanutils/ Apache Commons BeanUtils] and ...
reflection,
introspection,
utilities,
java,
reflect,
generics,
method,
field,
annotation,
enum,
getter,
setter,
deepcopy,
deepclone,
deepmap
*version 0.9.5 - added
[MavenRepo Maven repository], [http://code.google.com/p/reflections/wiki/UseCases UseCases], [http://reflections.googlecode.com/svn/trunk/reflections/javadoc/apidocs/index.html?org/reflections/Reflections.html javadoc], [http://reflections.googlecode.com/svn/trunk/reflection...
reflection,
metadata,
analysis,
annotations,
scannotations,
mamo,
subtypes,
annotatedwith,
bootstrap,
classpath,
scan
Facility Container 简易的ioc容器
----通过Java反射机制实现的ioc容器
能够做的事情
1.根据上下文也就是配置文件创建组件.
2.参数包括大部分的基本类型的创建,引用类型,集合参数类型(List Set Map Array).
3.参数还可以引用其上下文中的组件.
4.依赖注入的方式 通过构造函数,setter方法进行注入,还提供通过客户的配置调用任意方法的功能.
B.不能够做的事情,并且下一步需要作的事情.
1.引用其他上下文中的组件.
2.提供更好的上下文装饰策略接口 - 对创造好的容器的装饰 如日志打印装饰.
配置文...
= Fast Reflection =
java refleciton api 可以让程序变得灵活,但是速度影响很大,fast Refleciton 可以解决这个问题
== 速度 ==
Fast Reflction 在我的测试中所花的时间大约是javaReflection所花时间的*10%-20%*
== 用法 ==
{{{
public static void main(String args[])
{
try
{
int N = 100000000;
FastReflect fr = new FastReflect();
Method m...
{{{
MyObject myObject = new MyObject();
// Wrap myObject into a SerializableObject instance
using (SerializableObject serializableMyObject = new SerializableObject(myObject))
{
// Access myObject serializable members by name
// data type conversion is performed automatically
ser...
=Brui: Bean Reflection User Interface=
==1. Overview==
Status: Brainstorming
===1.1. Objectives===
# The framework support the generation of (client side) user interfaces for Java.
# The framework should work for all objects that follow the Java Bean Specification (so-called Pojos – plain...
http://quickdb.googlecode.com/files/quickDBLogo.png
<br><font color="#43cd80" face="Verdana">
==Version 1.1 RELEASED!==
</font>
_Working with Databases has never been Easier!_
QuickDB aims to develop a persistence library that allow the user to write only the Data Model, and the library wi...
quickdb,
java,
persistence,
library,
reflection,
orm,
mysql,
sqlserver,
postgresql,
csharp,
python,
php,
mobile
==Introduction:==
This open source utility allows Adobe Flex developers to debug and alter properties of components while running an application.
==How to use:==
* Add the ReflexUtil SWC library to your flex project
* Open the Default MXML Application file
* Add the following child to t...
==Presentation==
Refloker provides a fluent API do execute methods and read / write fields through reflection.
It tries to help to write expressive reflection invocations without cluttering your code with exception handling.
Refloker requires *java 1.5* or more.
Refloker is still in alpha...
== Overview ==
ReflectASM is a very small Java library that provides high performance reflection by using code generation.
== Usage ==
Method reflection with ReflectASM:
{{{
SomeClass someObject = ...
MethodAccess access = MethodAccess.get(SomeClass.class);
access.invoke(someObject, "...