comparison src/main/java/org/msgpack/template/builder/beans/SimpleBeanInfo.java @ 0:cb825acd883a

first commit
author sugi
date Sat, 18 Oct 2014 15:06:15 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cb825acd883a
1 // MODIFIED FOR THE MSGPACK PROJECT
2 // Licensed to the Apache Software Foundation (ASF) under one or more
3 // contributor license agreements. See the NOTICE file distributed with
4 // this work for additional information regarding copyright ownership.
5 // The ASF licenses this file to You under the Apache License, Version 2.0
6 // (the "License"); you may not use this file except in compliance with
7 // the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 // License for the specific language governing permissions and limitations under
15 // the License.
16 //
17
18 package org.msgpack.template.builder.beans;
19
20
21 public class SimpleBeanInfo implements BeanInfo {
22
23 public SimpleBeanInfo() {
24 // expected
25 }
26
27 public PropertyDescriptor[] getPropertyDescriptors() {
28 return null;
29 }
30
31 public MethodDescriptor[] getMethodDescriptors() {
32 return null;
33 }
34
35 public EventSetDescriptor[] getEventSetDescriptors() {
36 return null;
37 }
38
39 public BeanInfo[] getAdditionalBeanInfo() {
40 return null;
41 }
42
43 public BeanDescriptor getBeanDescriptor() {
44 return null;
45 }
46
47 public int getDefaultPropertyIndex() {
48 return -1;
49 }
50
51 public int getDefaultEventIndex() {
52 return -1;
53 }
54 }