~dhis2-devs-core/dhis2/trunk

« back to all changes in this revision

Viewing changes to dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/MapMap.java

  • Committer: jimgrace at gmail
  • Date: 2014-05-18 00:49:40 UTC
  • Revision ID: jimgrace@gmail.com-20140518004940-wbw1bxjhfdmf33yl
Support attribute categories in validation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.hisp.dhis.system.util;
 
1
package org.hisp.dhis.common;
2
2
 
3
3
/*
4
4
 * Copyright (c) 2004-2014, University of Oslo
52
52
        map.putAll( m );
53
53
        this.put( key, map );
54
54
    }
 
55
 
 
56
    public V getValue( T key, U valueKey )
 
57
    {
 
58
        return this.get( key ) == null ? null : this.get( key ).get( valueKey );
 
59
    }
55
60
}