blob: 38c68837a278b65f41297a4c9ad51449f7344bbe [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.xml.xml1b;
import org.apache.juneau.annotation.*;
import org.apache.juneau.xml.annotation.*;
@Bean(sort=true)
public class T7 {
@Beanp(name="g1") public int f1 = 1;
@Xml(prefix="bar",namespace="http://bar") @Beanp(name="g2") public int f2 = 2;
private int f3 = 3;
@Beanp(name="g3") public int getF3() { return f3; }
@Beanp(name="g3") public void setF3(int f3) { this.f3 = f3; }
private int f4 = 4;
@Beanp(name="g4") @Xml(prefix="baz",namespace="http://baz") public int getF4() { return f4; }
@Beanp(name="g4") public void setF4(int f4) { this.f4 = f4; }
public boolean equals(T7 x) {
return x.f1 == f1 && x.f2 == f2 && x.f3 == f3 && x.f4 == f4;
}
}