All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.fw.common.mithra.attribute.SingleColumnTupleDateAttribute Maven / Gradle / Ivy

There is a newer version: 18.1.0
Show newest version
/*
 Copyright 2016 Goldman Sachs.
 Licensed 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 com.gs.fw.common.mithra.attribute;

import com.gs.fw.common.mithra.tempobject.ArrayTuple;
import com.gs.fw.common.mithra.tempobject.Tuple;
import com.gs.fw.common.mithra.tempobject.TupleTempContext;

import java.io.ObjectStreamException;
import java.io.ObjectInputStream;
import java.io.IOException;
import java.util.Date;


public class SingleColumnTupleDateAttribute extends SingleColumnDateAttribute
{

    private int pos;
    private boolean setAsString;
    private TupleTempContext tupleTempContext;

    public SingleColumnTupleDateAttribute(int pos, boolean setAsString, TupleTempContext tupleTempContext)
    {
        super("c"+pos, "", "c"+pos, "", "", false, false, tupleTempContext.getRelatedFinder(), null, true, false, setAsString);
        this.tupleTempContext = tupleTempContext;
        this.pos = pos;
        this.setAsString = setAsString;
    }

    @Override
    public void setValue(Owner o, Date newValue)
    {
        ((ArrayTuple)o).setAttribute(this.pos, newValue);
    }

    public void setDateValue(Object o, Date newValue)
    {
        throw new RuntimeException("not implemented");
    }

    public Date dateValueOf(Object o)
    {
        return ((Tuple)o).getAttributeAsDate(this.pos);
    }

    protected Object writeReplace() throws ObjectStreamException
    {
        return this;
    }

    private synchronized void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
    {
        in.defaultReadObject();
        this.setAll("c"+pos, "", "", false, this.tupleTempContext.getRelatedFinder(), null, true);
        this.setDateProperties(this.setAsString);
        this.setColumnName("c"+pos);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy